
    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_11baf8ec7298a302ebd4f243.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d0bb21f6c7b8c6be2b7b3bc2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cc452bbb06fbf57d87ec98e7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b8b487ded8473e81f1b728da.woff')format("woff");}.ff4{font-family:ff4;line-height:0.773000;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_ac3a786f3ec0e39cca016f09.woff')format("woff");}.ff5{font-family:ff5;line-height:1.206055;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_d57e1f53371e280b956b92a8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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_820a7db498f18b275217d6c3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b78fd745cc9c4584dce86653.woff')format("woff");}.ff8{font-family:ff8;line-height:0.493000;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_785ed1d1f7e50bcc543fcfe8.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_43988af59c0ce531870fd6d3.woff')format("woff");}.ffa{font-family:ffa;line-height:1.799000;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_486d3be60a0777f348365a9e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_486d3be60a0777f348365a9e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_ac3a786f3ec0e39cca016f09.woff')format("woff");}.ffd{font-family:ffd;line-height:1.206055;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_1461b8040e2a5347a98e59a2.woff')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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:fff;src:url('chunks/assets/font_ac3a786f3ec0e39cca016f09.woff')format("woff");}.fff{font-family:fff;line-height:1.206055;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:ff10;src:url('chunks/assets/font_574bab43cfb928d467d91110.woff')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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:ff11;src:url('chunks/assets/font_ac3a786f3ec0e39cca016f09.woff')format("woff");}.ff11{font-family:ff11;line-height:1.206055;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:ff12;src:url('chunks/assets/font_d57e1f53371e280b956b92a8.woff')format("woff");}.ff12{font-family:ff12;line-height:1.006348;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:ff13;src:url('chunks/assets/font_ac3a786f3ec0e39cca016f09.woff')format("woff");}.ff13{font-family:ff13;line-height:1.206055;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:ff14;src:url('chunks/assets/font_d57e1f53371e280b956b92a8.woff')format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m20{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);}
.mb{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m1e{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);}
.m10{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);}
.m1{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);}
.m3{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);}
.m14{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);}
.m9{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);}
.m29{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);}
.m1b{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);}
.m25{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);}
.m2b{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);}
.m2c{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);}
.m1d{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);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m7{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);}
.m12{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);}
.m16{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);}
.m5{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);}
.mf{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);}
.mc{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);}
.m8{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);}
.me{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);}
.m15{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);}
.m18{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);}
.ma{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);}
.m19{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);}
.m1a{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);}
.m17{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);}
.m26{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);}
.m13{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-66.384000px;}
.va{vertical-align:-24.690000px;}
.v4{vertical-align:-17.874000px;}
.v5{vertical-align:-14.964000px;}
.v1{vertical-align:-11.952000px;}
.v2{vertical-align:-1.442880px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:5.508000px;}
.vd{vertical-align:12.510000px;}
.v6{vertical-align:14.964000px;}
.v15{vertical-align:19.530000px;}
.v3{vertical-align:21.702000px;}
.vf{vertical-align:24.684000px;}
.v11{vertical-align:30.780000px;}
.v14{vertical-align:35.862000px;}
.ve{vertical-align:37.200000px;}
.v16{vertical-align:42.481800px;}
.v12{vertical-align:52.236000px;}
.vb{vertical-align:65.772000px;}
.vc{vertical-align:78.894000px;}
.v10{vertical-align:84.882000px;}
.v9{vertical-align:90.462000px;}
.v7{vertical-align:132.156000px;}
.lsf{letter-spacing:-0.222444px;}
.ls3{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.000800px;}
.ls9{letter-spacing:0.003178px;}
.ls4c{letter-spacing:0.010800px;}
.ls4b{letter-spacing:0.027000px;}
.ls8{letter-spacing:0.138276px;}
.ls4d{letter-spacing:0.140400px;}
.ls40{letter-spacing:0.428370px;}
.ls22{letter-spacing:0.542815px;}
.ls1c{letter-spacing:0.548815px;}
.ls26{letter-spacing:0.564600px;}
.ls3e{letter-spacing:0.567497px;}
.ls2d{letter-spacing:0.570600px;}
.ls23{letter-spacing:0.571200px;}
.ls2e{letter-spacing:0.670741px;}
.ls17{letter-spacing:0.676741px;}
.lsc{letter-spacing:0.714783px;}
.lse{letter-spacing:0.720783px;}
.ls1d{letter-spacing:0.745200px;}
.ls2b{letter-spacing:0.747100px;}
.ls20{letter-spacing:0.760407px;}
.ls42{letter-spacing:0.763200px;}
.ls46{letter-spacing:0.994200px;}
.ls43{letter-spacing:1.000200px;}
.ls12{letter-spacing:1.078407px;}
.ls1b{letter-spacing:1.135200px;}
.ls3f{letter-spacing:1.147363px;}
.ls29{letter-spacing:1.284783px;}
.ls34{letter-spacing:1.290783px;}
.ls1f{letter-spacing:1.312483px;}
.ls10{letter-spacing:1.420741px;}
.ls21{letter-spacing:1.458571px;}
.ls39{letter-spacing:1.464783px;}
.ls31{letter-spacing:1.470783px;}
.ls1e{letter-spacing:1.484012px;}
.ls1a{letter-spacing:1.498483px;}
.ls25{letter-spacing:2.244783px;}
.ls4a{letter-spacing:3.513900px;}
.ls35{letter-spacing:3.553200px;}
.ls2a{letter-spacing:3.559200px;}
.lsd{letter-spacing:3.733200px;}
.lsb{letter-spacing:3.739200px;}
.ls14{letter-spacing:3.812725px;}
.ls24{letter-spacing:4.246407px;}
.ls13{letter-spacing:4.252407px;}
.ls27{letter-spacing:4.303200px;}
.ls0{letter-spacing:10.461300px;}
.ls11{letter-spacing:10.982725px;}
.ls3c{letter-spacing:10.988725px;}
.ls47{letter-spacing:11.656242px;}
.ls2{letter-spacing:11.954850px;}
.ls49{letter-spacing:12.194253px;}
.ls3a{letter-spacing:12.339483px;}
.ls33{letter-spacing:12.345483px;}
.ls18{letter-spacing:12.370200px;}
.ls5{letter-spacing:12.732203px;}
.ls19{letter-spacing:13.083483px;}
.ls53{letter-spacing:13.194168px;}
.ls4e{letter-spacing:13.448400px;}
.ls52{letter-spacing:13.454400px;}
.ls4f{letter-spacing:13.472244px;}
.ls50{letter-spacing:13.697339px;}
.ls56{letter-spacing:13.699639px;}
.ls54{letter-spacing:14.050400px;}
.ls6{letter-spacing:14.645022px;}
.ls7{letter-spacing:14.824349px;}
.ls45{letter-spacing:15.268200px;}
.ls32{letter-spacing:15.868407px;}
.ls51{letter-spacing:16.591576px;}
.ls30{letter-spacing:17.319483px;}
.ls38{letter-spacing:17.325483px;}
.ls37{letter-spacing:18.022741px;}
.ls2f{letter-spacing:18.028741px;}
.ls16{letter-spacing:18.069483px;}
.ls55{letter-spacing:20.103341px;}
.ls15{letter-spacing:20.848407px;}
.ls44{letter-spacing:21.222571px;}
.ls41{letter-spacing:24.115200px;}
.ls3d{letter-spacing:25.065483px;}
.ls1{letter-spacing:28.453654px;}
.ls28{letter-spacing:61.262012px;}
.lsa{letter-spacing:91.298700px;}
.ls4{letter-spacing:94.292700px;}
.ls36{letter-spacing:319.614783px;}
.ls3b{letter-spacing:323.796783px;}
.ls2c{letter-spacing:551.094783px;}
.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;}
}
.ws3b{word-spacing:-15.030000px;}
.ws4a{word-spacing:-14.943900px;}
.ws3c{word-spacing:-13.449600px;}
.ws24{word-spacing:-11.955150px;}
.ws48{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws53{word-spacing:-5.260253px;}
.ws5e{word-spacing:-3.287658px;}
.ws70{word-spacing:-3.227882px;}
.ws1e{word-spacing:-3.168107px;}
.ws38{word-spacing:-2.211697px;}
.ws37{word-spacing:-1.853044px;}
.ws56{word-spacing:-1.494390px;}
.ws5b{word-spacing:-1.374839px;}
.ws62{word-spacing:-1.315063px;}
.ws71{word-spacing:-1.237363px;}
.ws57{word-spacing:-1.195512px;}
.ws9d{word-spacing:-0.968371px;}
.ws1b{word-spacing:-0.956410px;}
.ws6a{word-spacing:-0.669488px;}
.ws2c{word-spacing:-0.597756px;}
.ws64{word-spacing:-0.478205px;}
.wsb7{word-spacing:-0.430387px;}
.ws28{word-spacing:-0.358654px;}
.wsae{word-spacing:-0.322790px;}
.ws10{word-spacing:-0.298878px;}
.ws82{word-spacing:-0.268992px;}
.wsc{word-spacing:-0.239102px;}
.ws99{word-spacing:-0.215194px;}
.wsf{word-spacing:-0.179327px;}
.ws87{word-spacing:-0.161395px;}
.ws1c{word-spacing:-0.119551px;}
.ws66{word-spacing:-0.107597px;}
.wsa{word-spacing:-0.059776px;}
.ws86{word-spacing:-0.053798px;}
.ws90{word-spacing:-0.029410px;}
.wsa5{word-spacing:-0.007488px;}
.ws8c{word-spacing:-0.007066px;}
.wsb3{word-spacing:-0.006614px;}
.ws92{word-spacing:-0.006086px;}
.ws8a{word-spacing:-0.004800px;}
.wsb2{word-spacing:-0.003859px;}
.wsb5{word-spacing:-0.003427px;}
.ws23{word-spacing:-0.003238px;}
.ws4{word-spacing:-0.000389px;}
.ws0{word-spacing:0.000000px;}
.ws3d{word-spacing:0.053798px;}
.wse{word-spacing:0.059776px;}
.ws3{word-spacing:0.083686px;}
.ws83{word-spacing:0.107597px;}
.ws22{word-spacing:0.119551px;}
.ws2{word-spacing:0.125528px;}
.ws72{word-spacing:0.161395px;}
.ws16{word-spacing:0.179327px;}
.ws68{word-spacing:0.191282px;}
.ws88{word-spacing:0.215194px;}
.ws1d{word-spacing:0.239102px;}
.ws5a{word-spacing:0.268992px;}
.ws2b{word-spacing:0.298878px;}
.ws50{word-spacing:0.358654px;}
.wsbd{word-spacing:0.376589px;}
.wsa7{word-spacing:0.430387px;}
.ws6c{word-spacing:0.478205px;}
.ws93{word-spacing:0.484186px;}
.ws35{word-spacing:0.537980px;}
.wsa3{word-spacing:0.591782px;}
.ws6f{word-spacing:0.597756px;}
.wsa1{word-spacing:0.645581px;}
.ws59{word-spacing:0.657532px;}
.ws2f{word-spacing:0.717307px;}
.ws9e{word-spacing:0.806976px;}
.ws12{word-spacing:0.836858px;}
.ws73{word-spacing:0.860774px;}
.wsb{word-spacing:0.896634px;}
.ws77{word-spacing:1.016185px;}
.ws9b{word-spacing:1.022170px;}
.ws76{word-spacing:1.075961px;}
.wsba{word-spacing:1.075968px;}
.wsa4{word-spacing:1.237363px;}
.ws6d{word-spacing:1.315063px;}
.wsbc{word-spacing:1.344960px;}
.ws5d{word-spacing:1.374839px;}
.ws4e{word-spacing:1.487124px;}
.ws4b{word-spacing:1.492862px;}
.wsa6{word-spacing:1.506355px;}
.ws4c{word-spacing:1.644996px;}
.ws6e{word-spacing:1.733492px;}
.ws26{word-spacing:1.793268px;}
.ws60{word-spacing:1.912819px;}
.ws2e{word-spacing:2.032370px;}
.ws80{word-spacing:2.044339px;}
.wsb4{word-spacing:2.151936px;}
.ws7a{word-spacing:2.271473px;}
.ws7c{word-spacing:2.391024px;}
.ws54{word-spacing:2.404800px;}
.ws42{word-spacing:2.450800px;}
.ws96{word-spacing:2.474726px;}
.ws6{word-spacing:2.510252px;}
.ws21{word-spacing:2.570351px;}
.ws81{word-spacing:2.582323px;}
.wsa9{word-spacing:2.636122px;}
.ws74{word-spacing:2.689902px;}
.ws69{word-spacing:2.725774px;}
.ws15{word-spacing:2.749678px;}
.wsbb{word-spacing:2.797517px;}
.ws7{word-spacing:2.869236px;}
.ws30{word-spacing:3.048556px;}
.wsb0{word-spacing:3.066509px;}
.ws41{word-spacing:3.108331px;}
.ws97{word-spacing:3.120307px;}
.wsb9{word-spacing:3.218112px;}
.wsa2{word-spacing:3.218496px;}
.ws9a{word-spacing:3.220358px;}
.wsb8{word-spacing:3.223296px;}
.ws94{word-spacing:3.223306px;}
.wsb1{word-spacing:3.224966px;}
.wsa8{word-spacing:3.226358px;}
.ws8e{word-spacing:3.227904px;}
.wsaa{word-spacing:3.230179px;}
.wsa0{word-spacing:3.230986px;}
.ws78{word-spacing:3.234057px;}
.ws2d{word-spacing:3.407209px;}
.ws95{word-spacing:3.427775px;}
.ws9c{word-spacing:3.443098px;}
.ws52{word-spacing:3.449369px;}
.wsbe{word-spacing:3.496896px;}
.ws39{word-spacing:3.526760px;}
.wsb6{word-spacing:3.584419px;}
.ws17{word-spacing:3.586536px;}
.ws79{word-spacing:3.586678px;}
.ws5f{word-spacing:3.765888px;}
.ws20{word-spacing:3.885414px;}
.ws3f{word-spacing:4.004965px;}
.ws3e{word-spacing:4.064741px;}
.ws43{word-spacing:4.303843px;}
.ws1a{word-spacing:4.303872px;}
.ws27{word-spacing:4.662497px;}
.ws31{word-spacing:4.722272px;}
.ws91{word-spacing:4.895654px;}
.ws34{word-spacing:4.901599px;}
.ws47{word-spacing:5.021150px;}
.ws58{word-spacing:5.140702px;}
.ws7b{word-spacing:5.200477px;}
.wsab{word-spacing:5.272243px;}
.ws25{word-spacing:5.320028px;}
.ws8d{word-spacing:5.379840px;}
.ws2a{word-spacing:5.439580px;}
.ws65{word-spacing:5.541235px;}
.ws6b{word-spacing:5.559131px;}
.ws3a{word-spacing:5.917784px;}
.ws85{word-spacing:5.971622px;}
.ws44{word-spacing:5.977560px;}
.ws63{word-spacing:6.037336px;}
.ws9f{word-spacing:6.133018px;}
.ws40{word-spacing:6.156887px;}
.ws61{word-spacing:6.216662px;}
.ws32{word-spacing:6.276438px;}
.ws51{word-spacing:6.575316px;}
.wsad{word-spacing:6.671002px;}
.ws7f{word-spacing:6.694867px;}
.ws11{word-spacing:6.814418px;}
.ws75{word-spacing:6.874194px;}
.ws29{word-spacing:6.933970px;}
.ws9{word-spacing:6.993745px;}
.ws45{word-spacing:7.113296px;}
.ws8b{word-spacing:7.302372px;}
.ws1f{word-spacing:7.412174px;}
.ws13{word-spacing:7.471950px;}
.ws36{word-spacing:7.531726px;}
.wsaf{word-spacing:7.585574px;}
.ws14{word-spacing:7.591501px;}
.ws46{word-spacing:7.711052px;}
.ws33{word-spacing:7.950155px;}
.ws49{word-spacing:8.308808px;}
.wsd{word-spacing:8.368584px;}
.ws7e{word-spacing:8.607686px;}
.ws5c{word-spacing:11.656242px;}
.ws19{word-spacing:11.775793px;}
.ws84{word-spacing:15.343528px;}
.ws7d{word-spacing:17.095822px;}
.ws8{word-spacing:17.799160px;}
.wsac{word-spacing:19.475021px;}
.ws18{word-spacing:27.357122px;}
.ws1{word-spacing:28.455541px;}
.ws4d{word-spacing:45.574800px;}
.ws4f{word-spacing:45.580800px;}
.ws98{word-spacing:48.398400px;}
.ws8f{word-spacing:75.297600px;}
.ws67{word-spacing:248.873496px;}
.ws55{word-spacing:706.816500px;}
.ws89{word-spacing:1170.644400px;}
._5{margin-left:-7.962163px;}
._9{margin-left:-6.097111px;}
._1{margin-left:-4.602708px;}
._10{margin-left:-3.466985px;}
._2{margin-left:-1.506341px;}
._1d{width:1.135740px;}
._1e{width:2.273045px;}
._21{width:3.284503px;}
._18{width:4.423394px;}
._20{width:5.554393px;}
._1f{width:6.575316px;}
._0{width:12.971268px;}
._2b{width:14.943900px;}
._19{width:16.247012px;}
._16{width:17.633802px;}
._8{width:18.721714px;}
._e{width:19.941127px;}
._15{width:21.160549px;}
._1a{width:22.786454px;}
._7{width:23.790689px;}
._3{width:25.946136px;}
._c{width:27.437000px;}
._14{width:28.584688px;}
._d{width:29.828024px;}
._f{width:32.111225px;}
._4{width:33.355008px;}
._13{width:34.968726px;}
._1c{width:37.790130px;}
._17{width:39.870325px;}
._b{width:42.333076px;}
._a{width:44.672749px;}
._3b{width:61.868160px;}
._6{width:69.370859px;}
._2e{width:71.713267px;}
._38{width:88.498368px;}
._35{width:139.732337px;}
._25{width:141.787723px;}
._33{width:143.265139px;}
._32{width:146.385446px;}
._30{width:149.882342px;}
._2f{width:153.002650px;}
._37{width:163.385741px;}
._2c{width:169.940036px;}
._31{width:178.072704px;}
._28{width:184.886036px;}
._39{width:190.661530px;}
._22{width:200.606914px;}
._36{width:208.576397px;}
._34{width:216.538560px;}
._24{width:218.420042px;}
._26{width:222.184458px;}
._23{width:236.830927px;}
._2a{width:248.883396px;}
._29{width:263.811396px;}
._27{width:296.392800px;}
._1b{width:1407.012408px;}
._11{width:1719.800700px;}
._3a{width:1814.589000px;}
._2d{width:2494.874700px;}
._12{width:2518.784700px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.865600px;}
.fsd{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fsf{font-size:43.600200px;}
.fs7{font-size:45.429600px;}
.fs5{font-size:47.337600px;}
.fs3{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fse{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:60.120000px;}
.fs6{font-size:62.286600px;}
.fsb{font-size:63.126000px;}
.fs4{font-size:71.731200px;}
.fsa{font-size:83.686200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yd9{bottom:6.293943px;}
.yb6{bottom:7.757325px;}
.y172{bottom:8.515500px;}
.yef{bottom:10.079023px;}
.y82{bottom:10.267162px;}
.yec{bottom:10.291928px;}
.y17a{bottom:11.311954px;}
.y171{bottom:12.114600px;}
.y179{bottom:25.531948px;}
.y170{bottom:26.244461px;}
.y40{bottom:45.921000px;}
.y3f{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.y1e5{bottom:105.961500px;}
.ydc{bottom:106.627500px;}
.y74{bottom:107.440500px;}
.yd4{bottom:115.333500px;}
.y14{bottom:118.147500px;}
.y3e{bottom:120.610500px;}
.y1b2{bottom:120.628500px;}
.y1e4{bottom:125.112000px;}
.yda{bottom:125.860500px;}
.y73{bottom:128.332500px;}
.ydb{bottom:130.743000px;}
.y17f{bottom:134.094000px;}
.y10e{bottom:134.871000px;}
.y13{bottom:136.035000px;}
.yd3{bottom:136.225500px;}
.y1b1{bottom:139.779000px;}
.y3d{bottom:141.502500px;}
.y1e3{bottom:144.262500px;}
.yb4{bottom:146.496000px;}
.yd8{bottom:148.289288px;}
.y72{bottom:149.223000px;}
.y177{bottom:149.547000px;}
.y17d{bottom:153.325500px;}
.y12{bottom:153.924000px;}
.y10d{bottom:155.763000px;}
.yd2{bottom:157.117500px;}
.y17e{bottom:158.208000px;}
.y1b0{bottom:158.929500px;}
.y8f{bottom:159.151500px;}
.y3c{bottom:162.394500px;}
.y1e2{bottom:163.413000px;}
.yb3{bottom:167.386500px;}
.y175{bottom:168.780000px;}
.y11{bottom:171.811500px;}
.y17c{bottom:172.558500px;}
.y176{bottom:173.661000px;}
.y71{bottom:174.598500px;}
.y10c{bottom:176.655000px;}
.yd1{bottom:178.008000px;}
.y1af{bottom:178.080000px;}
.y8e{bottom:180.043500px;}
.y1e1{bottom:182.563500px;}
.y3b{bottom:183.285000px;}
.y13b{bottom:183.934500px;}
.y174{bottom:188.011500px;}
.yb1{bottom:188.122500px;}
.yb0{bottom:188.278500px;}
.y10{bottom:189.699000px;}
.y17b{bottom:191.791500px;}
.yb2{bottom:193.704000px;}
.y70{bottom:195.490500px;}
.y1ae{bottom:197.230500px;}
.y10a{bottom:197.545500px;}
.yd0{bottom:198.900000px;}
.y8d{bottom:200.935500px;}
.y1e0{bottom:201.714000px;}
.y10b{bottom:202.971000px;}
.y3a{bottom:204.177000px;}
.y13a{bottom:204.826500px;}
.y173{bottom:207.244500px;}
.yf{bottom:207.588000px;}
.y6f{bottom:216.381000px;}
.y178{bottom:217.210500px;}
.y109{bottom:218.437500px;}
.ycf{bottom:219.792000px;}
.y1df{bottom:220.864500px;}
.y8c{bottom:221.827500px;}
.y140{bottom:224.004000px;}
.yaf{bottom:224.278500px;}
.y39{bottom:225.069000px;}
.ye{bottom:225.475500px;}
.y139{bottom:225.717000px;}
.y16f{bottom:232.663500px;}
.y1ad{bottom:235.531500px;}
.y6e{bottom:237.273000px;}
.y108{bottom:239.329500px;}
.y1de{bottom:240.015000px;}
.yce{bottom:240.682500px;}
.y13e{bottom:243.237000px;}
.y16e{bottom:243.541500px;}
.y38{bottom:245.961000px;}
.y138{bottom:246.609000px;}
.y8b{bottom:247.201500px;}
.y13f{bottom:248.119500px;}
.yd{bottom:252.330000px;}
.y1ac{bottom:254.682000px;}
.y1dd{bottom:259.165500px;}
.y107{bottom:260.221500px;}
.ycd{bottom:261.574500px;}
.y13d{bottom:262.470000px;}
.yae{bottom:262.579500px;}
.y6d{bottom:262.647000px;}
.y16d{bottom:263.040000px;}
.y37{bottom:266.851500px;}
.y137{bottom:267.501000px;}
.y8a{bottom:268.093500px;}
.yc{bottom:270.217500px;}
.y1ab{bottom:273.832500px;}
.y1dc{bottom:278.316000px;}
.y106{bottom:281.112000px;}
.y13c{bottom:281.703000px;}
.ycc{bottom:282.466500px;}
.y16c{bottom:282.538500px;}
.y6c{bottom:283.539000px;}
.y36{bottom:287.743500px;}
.yb{bottom:288.105000px;}
.y136{bottom:288.391500px;}
.y89{bottom:288.984000px;}
.y1aa{bottom:292.984500px;}
.yed{bottom:294.868500px;}
.y1db{bottom:297.466500px;}
.yad{bottom:300.880500px;}
.y105{bottom:302.004000px;}
.y16b{bottom:302.038500px;}
.y6b{bottom:304.431000px;}
.ya{bottom:305.994000px;}
.ycb{bottom:307.840500px;}
.y35{bottom:308.635500px;}
.y135{bottom:309.283500px;}
.y88{bottom:309.876000px;}
.y1e8{bottom:311.887500px;}
.y1a9{bottom:312.135000px;}
.y1da{bottom:316.617000px;}
.yeb{bottom:320.286000px;}
.y16a{bottom:321.537000px;}
.yac{bottom:321.772500px;}
.y104{bottom:322.896000px;}
.y9{bottom:323.881500px;}
.y6a{bottom:325.323000px;}
.yca{bottom:328.732500px;}
.y34{bottom:329.526000px;}
.y134{bottom:330.175500px;}
.y87{bottom:330.768000px;}
.y1e7{bottom:331.038000px;}
.y1a8{bottom:331.285500px;}
.y1d9{bottom:335.767500px;}
.y169{bottom:341.035500px;}
.y8{bottom:341.769000px;}
.yab{bottom:342.663000px;}
.y103{bottom:343.786500px;}
.y69{bottom:346.213500px;}
.yc9{bottom:349.624500px;}
.y1e6{bottom:350.188500px;}
.y33{bottom:350.418000px;}
.y1a7{bottom:350.436000px;}
.y133{bottom:351.066000px;}
.y86{bottom:351.658500px;}
.y1d8{bottom:354.918000px;}
.y7{bottom:359.658000px;}
.y168{bottom:360.534000px;}
.y102{bottom:364.678500px;}
.yaa{bottom:367.017000px;}
.y68{bottom:367.105500px;}
.y1a6{bottom:369.586500px;}
.y32{bottom:371.310000px;}
.y132{bottom:371.958000px;}
.y1d7{bottom:374.070000px;}
.yc8{bottom:374.998500px;}
.y85{bottom:377.034000px;}
.y167{bottom:380.032500px;}
.ya9{bottom:380.352000px;}
.ya7{bottom:383.460000px;}
.y6{bottom:383.523000px;}
.y101{bottom:385.570500px;}
.y67{bottom:387.997500px;}
.y1a5{bottom:388.737000px;}
.y31{bottom:392.200500px;}
.y131{bottom:392.850000px;}
.y1d6{bottom:393.220500px;}
.y166{bottom:399.531000px;}
.ya8{bottom:399.600000px;}
.y5{bottom:401.410500px;}
.yff{bottom:406.461000px;}
.y1a4{bottom:407.887500px;}
.ya6{bottom:408.400500px;}
.y66{bottom:408.888000px;}
.yc7{bottom:410.341500px;}
.y100{bottom:411.886500px;}
.y1d5{bottom:412.371000px;}
.y84{bottom:412.662000px;}
.y155{bottom:413.092500px;}
.y12f{bottom:413.740500px;}
.y30{bottom:417.576000px;}
.y165{bottom:419.029500px;}
.y130{bottom:419.166000px;}
.y4{bottom:419.299500px;}
.y1a3{bottom:427.038000px;}
.yfe{bottom:427.353000px;}
.ya5{bottom:429.292500px;}
.y65{bottom:429.780000px;}
.yc6{bottom:431.232000px;}
.y1d4{bottom:431.521500px;}
.y83{bottom:431.895000px;}
.y154{bottom:433.984500px;}
.y12e{bottom:434.632500px;}
.y3{bottom:437.187000px;}
.y164{bottom:438.529500px;}
.y1a2{bottom:446.188500px;}
.yfd{bottom:448.245000px;}
.ya4{bottom:450.184500px;}
.y64{bottom:450.672000px;}
.yc5{bottom:452.124000px;}
.y153{bottom:454.875000px;}
.y12d{bottom:455.524500px;}
.y81{bottom:457.312800px;}
.y163{bottom:458.028000px;}
.y2{bottom:461.052000px;}
.y1a1{bottom:465.339000px;}
.yfc{bottom:469.135500px;}
.y1d3{bottom:469.822500px;}
.ya3{bottom:471.075000px;}
.y63{bottom:471.562500px;}
.yc4{bottom:473.016000px;}
.y12c{bottom:476.416500px;}
.y1{bottom:478.941000px;}
.y152{bottom:481.776000px;}
.y1a0{bottom:484.489500px;}
.y162{bottom:488.187000px;}
.y1d2{bottom:488.973000px;}
.yfb{bottom:490.027500px;}
.ya2{bottom:491.967000px;}
.y62{bottom:492.454500px;}
.yc3{bottom:493.908000px;}
.y2f{bottom:496.788000px;}
.y12b{bottom:497.307000px;}
.y19f{bottom:503.640000px;}
.y1d1{bottom:508.123500px;}
.y151{bottom:508.677000px;}
.yfa{bottom:510.919500px;}
.ya1{bottom:512.859000px;}
.y61{bottom:513.346500px;}
.yc2{bottom:514.798500px;}
.y2e{bottom:517.678500px;}
.y19e{bottom:522.790500px;}
.y161{bottom:527.011500px;}
.y1d0{bottom:527.274000px;}
.y150{bottom:529.569000px;}
.yf9{bottom:531.811500px;}
.ya0{bottom:533.749500px;}
.y60{bottom:534.237000px;}
.yc1{bottom:535.690500px;}
.y12a{bottom:539.503500px;}
.y19d{bottom:541.941000px;}
.y1cf{bottom:546.424500px;}
.y14f{bottom:550.459500px;}
.yf8{bottom:552.702000px;}
.y129{bottom:553.699500px;}
.y9f{bottom:554.641500px;}
.y5f{bottom:555.129000px;}
.y160{bottom:555.475500px;}
.y2d{bottom:556.503000px;}
.y19c{bottom:561.091500px;}
.y1ce{bottom:565.575000px;}
.y128{bottom:567.897000px;}
.y14e{bottom:571.351500px;}
.yc0{bottom:572.355000px;}
.yf7{bottom:573.594000px;}
.yd7{bottom:574.605000px;}
.y15f{bottom:574.974000px;}
.y9e{bottom:575.533500px;}
.y5e{bottom:576.021000px;}
.y2c{bottom:577.395000px;}
.y19b{bottom:580.242000px;}
.y127{bottom:582.093000px;}
.y1cd{bottom:584.725500px;}
.ybf{bottom:588.090000px;}
.y14d{bottom:592.243500px;}
.ybd{bottom:593.245500px;}
.yf6{bottom:594.486000px;}
.yd6{bottom:595.497000px;}
.y5d{bottom:596.913000px;}
.ybe{bottom:597.964500px;}
.y2b{bottom:598.287000px;}
.y19a{bottom:599.392500px;}
.y9d{bottom:600.907500px;}
.y126{bottom:602.100000px;}
.y15e{bottom:603.439500px;}
.y1cc{bottom:603.876000px;}
.yf5{bottom:615.376500px;}
.y5c{bottom:617.803500px;}
.y199{bottom:618.543000px;}
.y14c{bottom:619.143000px;}
.y2a{bottom:619.177500px;}
.y125{bottom:620.631000px;}
.y15d{bottom:622.938000px;}
.y1cb{bottom:623.026500px;}
.yd5{bottom:631.125000px;}
.ybc{bottom:635.545500px;}
.y9c{bottom:636.250500px;}
.yf4{bottom:636.268500px;}
.y198{bottom:637.693500px;}
.y5b{bottom:638.695500px;}
.y124{bottom:639.160500px;}
.y29{bottom:640.069500px;}
.y1ca{bottom:642.177000px;}
.y15c{bottom:642.438000px;}
.y14b{bottom:646.044000px;}
.ybb{bottom:656.437500px;}
.y197{bottom:656.844000px;}
.y9b{bottom:657.142500px;}
.yf3{bottom:657.160500px;}
.y123{bottom:657.691500px;}
.y5a{bottom:659.587500px;}
.y28{bottom:660.961500px;}
.y1c9{bottom:661.327500px;}
.y15b{bottom:661.936500px;}
.y14a{bottom:666.936000px;}
.y196{bottom:675.996000px;}
.y122{bottom:676.222500px;}
.yba{bottom:677.329500px;}
.y9a{bottom:678.033000px;}
.y59{bottom:680.478000px;}
.y27{bottom:681.852000px;}
.y149{bottom:687.828000px;}
.y15a{bottom:690.400500px;}
.yf2{bottom:692.788500px;}
.y121{bottom:694.752000px;}
.y195{bottom:695.146500px;}
.yb9{bottom:698.220000px;}
.y99{bottom:698.925000px;}
.y1c8{bottom:699.628500px;}
.y58{bottom:701.370000px;}
.y26{bottom:702.744000px;}
.y148{bottom:708.718500px;}
.y159{bottom:709.900500px;}
.yf0{bottom:712.020000px;}
.y120{bottom:713.283000px;}
.y194{bottom:714.297000px;}
.yf1{bottom:716.902500px;}
.y1c7{bottom:718.779000px;}
.y98{bottom:719.817000px;}
.y57{bottom:722.262000px;}
.yb8{bottom:723.595500px;}
.y25{bottom:723.636000px;}
.y158{bottom:729.399000px;}
.y147{bottom:729.610500px;}
.y11f{bottom:731.814000px;}
.y193{bottom:733.447500px;}
.yee{bottom:737.439000px;}
.y1c6{bottom:737.929500px;}
.y97{bottom:740.707500px;}
.y11e{bottom:740.779500px;}
.y56{bottom:743.152500px;}
.y24{bottom:744.526500px;}
.y157{bottom:748.897500px;}
.y192{bottom:752.598000px;}
.yb7{bottom:755.742000px;}
.y146{bottom:756.511500px;}
.y1c5{bottom:757.081500px;}
.yea{bottom:759.561000px;}
.y96{bottom:761.599500px;}
.y55{bottom:764.044500px;}
.y23{bottom:765.418500px;}
.y156{bottom:768.396000px;}
.y191{bottom:771.748500px;}
.y11d{bottom:774.882000px;}
.y1c4{bottom:776.232000px;}
.y145{bottom:777.402000px;}
.ye9{bottom:780.453000px;}
.yb5{bottom:781.159500px;}
.y95{bottom:782.491500px;}
.y54{bottom:784.936500px;}
.y22{bottom:786.310500px;}
.y190{bottom:790.899000px;}
.y11c{bottom:793.411500px;}
.y1c3{bottom:795.382500px;}
.ye8{bottom:801.345000px;}
.y144{bottom:804.303000px;}
.y53{bottom:805.827000px;}
.y80{bottom:806.260500px;}
.y21{bottom:807.202500px;}
.y18f{bottom:810.049500px;}
.y11b{bottom:811.942500px;}
.y1c2{bottom:814.533000px;}
.y94{bottom:818.119500px;}
.ye7{bottom:822.235500px;}
.y143{bottom:825.195000px;}
.y52{bottom:826.719000px;}
.y7f{bottom:827.152500px;}
.y20{bottom:828.093000px;}
.y18e{bottom:829.200000px;}
.y11a{bottom:830.473500px;}
.y1c1{bottom:833.683500px;}
.ye6{bottom:843.127500px;}
.y142{bottom:846.087000px;}
.y51{bottom:847.611000px;}
.y7e{bottom:848.044500px;}
.y18d{bottom:848.350500px;}
.y1f{bottom:848.985000px;}
.y119{bottom:849.003000px;}
.y1c0{bottom:852.834000px;}
.ye5{bottom:864.019500px;}
.y18c{bottom:867.501000px;}
.y118{bottom:867.534000px;}
.y50{bottom:868.503000px;}
.y7c{bottom:868.935000px;}
.y1e{bottom:869.877000px;}
.y141{bottom:871.461000px;}
.y1bf{bottom:871.984500px;}
.y7d{bottom:874.360500px;}
.ye4{bottom:884.910000px;}
.y117{bottom:886.065000px;}
.y18b{bottom:886.651500px;}
.y4f{bottom:889.393500px;}
.y7b{bottom:889.827000px;}
.y1d{bottom:890.767500px;}
.y1be{bottom:891.135000px;}
.y116{bottom:904.594500px;}
.ye3{bottom:905.802000px;}
.y4e{bottom:910.285500px;}
.y7a{bottom:910.719000px;}
.y115{bottom:923.125500px;}
.y18a{bottom:924.952500px;}
.y1c{bottom:925.869000px;}
.ye2{bottom:926.694000px;}
.y1bd{bottom:929.436000px;}
.y4d{bottom:931.177500px;}
.y114{bottom:932.092500px;}
.y79{bottom:936.093000px;}
.y1b{bottom:942.009000px;}
.y189{bottom:944.103000px;}
.ye1{bottom:947.584500px;}
.y1bc{bottom:948.586500px;}
.y4c{bottom:952.068000px;}
.y1a{bottom:958.149000px;}
.y188{bottom:963.253500px;}
.y113{bottom:966.193500px;}
.y1bb{bottom:967.737000px;}
.ye0{bottom:968.476500px;}
.y78{bottom:971.436000px;}
.y4b{bottom:972.960000px;}
.y187{bottom:982.404000px;}
.y1ba{bottom:986.887500px;}
.ydf{bottom:989.368500px;}
.y77{bottom:992.326500px;}
.y4a{bottom:993.852000px;}
.y186{bottom:1001.554500px;}
.y112{bottom:1001.848500px;}
.y19{bottom:1002.246000px;}
.y1b9{bottom:1006.038000px;}
.yde{bottom:1010.260500px;}
.y76{bottom:1013.218500px;}
.y49{bottom:1014.742500px;}
.y185{bottom:1020.705000px;}
.y111{bottom:1021.080000px;}
.y1b8{bottom:1025.188500px;}
.ydd{bottom:1031.151000px;}
.y48{bottom:1035.634500px;}
.y75{bottom:1038.594000px;}
.y184{bottom:1039.855500px;}
.y110{bottom:1040.313000px;}
.y18{bottom:1041.070500px;}
.y1b7{bottom:1044.339000px;}
.y93{bottom:1052.043000px;}
.y47{bottom:1056.526500px;}
.y183{bottom:1059.007500px;}
.y1b6{bottom:1063.489500px;}
.y17{bottom:1072.407000px;}
.y92{bottom:1072.935000px;}
.y45{bottom:1077.417000px;}
.y182{bottom:1078.158000px;}
.y1b5{bottom:1082.640000px;}
.y46{bottom:1082.842500px;}
.y91{bottom:1093.825500px;}
.y181{bottom:1097.308500px;}
.y44{bottom:1098.309000px;}
.y1b4{bottom:1101.790500px;}
.y16{bottom:1103.745000px;}
.y90{bottom:1114.717500px;}
.y180{bottom:1116.459000px;}
.y43{bottom:1119.201000px;}
.y1b3{bottom:1120.941000px;}
.y42{bottom:1140.091500px;}
.y10f{bottom:1145.517000px;}
.y41{bottom:1200.196500px;}
.h1f{height:27.729727px;}
.h15{height:28.811839px;}
.h9{height:30.106714px;}
.h12{height:33.299897px;}
.h2{height:37.993262px;}
.ha{height:39.614278px;}
.hb{height:41.250077px;}
.h5{height:43.038432px;}
.h6{height:43.421105px;}
.h3{height:43.815515px;}
.h11{height:46.714950px;}
.h1b{height:48.701897px;}
.he{height:48.848947px;}
.h26{height:49.939453px;}
.h8{height:51.646464px;}
.h1e{height:52.819295px;}
.h7{height:54.276245px;}
.h16{height:54.790714px;}
.hd{height:55.599258px;}
.h19{height:58.379221px;}
.h10{height:62.946077px;}
.hf{height:62.952077px;}
.h13{height:65.024177px;}
.h17{height:69.399024px;}
.h4{height:77.469696px;}
.h1a{height:84.801965px;}
.h22{height:90.138245px;}
.h23{height:90.144245px;}
.h25{height:92.421253px;}
.h1c{height:105.714245px;}
.h14{height:134.547024px;}
.hc{height:325.307700px;}
.h18{height:373.876650px;}
.h1d{height:411.643312px;}
.h20{height:415.635000px;}
.h21{height:417.598500px;}
.h24{height:890.703000px;}
.h27{height:937.828500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:569.584043px;}
.w3{width:608.923350px;}
.w8{width:626.790750px;}
.w7{width:636.216150px;}
.w5{width:733.088850px;}
.w6{width:733.744050px;}
.w2{width:757.961850px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x3a{left:67.264650px;}
.x5b{left:79.699650px;}
.x66{left:81.531000px;}
.x76{left:84.220500px;}
.x75{left:85.848000px;}
.x68{left:94.696500px;}
.x6f{left:128.135850px;}
.x73{left:132.849750px;}
.x51{left:141.781500px;}
.x74{left:151.347754px;}
.x70{left:160.863150px;}
.x3b{left:181.566517px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x40{left:251.571000px;}
.x6c{left:280.420500px;}
.x4{left:281.479500px;}
.x46{left:293.005500px;}
.x47{left:304.654500px;}
.x39{left:308.203500px;}
.x17{left:312.732000px;}
.x59{left:314.097000px;}
.x41{left:325.074000px;}
.x18{left:327.676500px;}
.x5a{left:329.041500px;}
.x19{left:335.298000px;}
.x4a{left:345.192000px;}
.x4b{left:346.926000px;}
.x1a{left:350.242500px;}
.x5c{left:354.544139px;}
.x48{left:372.606000px;}
.x54{left:377.712000px;}
.x6d{left:382.459500px;}
.xf{left:390.940500px;}
.x55{left:392.656500px;}
.x10{left:398.412000px;}
.x11{left:402.114000px;}
.x42{left:403.302000px;}
.x49{left:405.390000px;}
.x12{left:409.585500px;}
.x65{left:415.933500px;}
.x69{left:417.958500px;}
.x1c{left:436.620000px;}
.x1d{left:443.427000px;}
.x30{left:446.005500px;}
.x3e{left:447.600000px;}
.x4c{left:452.839500px;}
.x31{left:460.950000px;}
.x3f{left:462.544500px;}
.x52{left:482.407500px;}
.x2d{left:488.989500px;}
.x20{left:490.894500px;}
.x2e{left:503.934000px;}
.x21{left:505.839000px;}
.x7{left:508.711500px;}
.x8{left:516.184500px;}
.x9{left:519.856500px;}
.x2f{left:522.688500px;}
.xa{left:527.328000px;}
.x45{left:528.727500px;}
.x44{left:531.123000px;}
.x43{left:535.990500px;}
.xd{left:541.941000px;}
.xe{left:549.412500px;}
.x38{left:553.096500px;}
.x5{left:562.221000px;}
.x1b{left:564.991500px;}
.x56{left:566.538694px;}
.x6{left:569.692500px;}
.x53{left:574.839000px;}
.x23{left:576.562500px;}
.x6e{left:583.809000px;}
.x6a{left:584.845500px;}
.x24{left:591.507000px;}
.x25{left:595.179000px;}
.x57{left:597.081000px;}
.x58{left:603.409500px;}
.x22{left:604.591500px;}
.x26{left:610.123500px;}
.x1e{left:612.502500px;}
.x1f{left:619.308000px;}
.xb{left:623.515500px;}
.xc{left:630.987000px;}
.x4d{left:633.499500px;}
.x4e{left:640.306500px;}
.x2b{left:656.724000px;}
.x2c{left:671.668500px;}
.x71{left:683.953500px;}
.x72{left:690.282000px;}
.x13{left:700.345500px;}
.x14{left:707.817000px;}
.x3c{left:709.422000px;}
.x15{left:711.478500px;}
.x4f{left:715.204500px;}
.x16{left:718.950000px;}
.x50{left:722.011500px;}
.x3d{left:724.366500px;}
.x5f{left:736.602000px;}
.x60{left:743.407500px;}
.x67{left:751.204500px;}
.x63{left:752.646000px;}
.x64{left:759.453000px;}
.x37{left:760.591500px;}
.x32{left:762.165000px;}
.x33{left:777.109500px;}
.x34{left:780.919500px;}
.x35{left:795.864000px;}
.x27{left:799.441500px;}
.x36{left:810.724500px;}
.x28{left:814.384500px;}
.x29{left:818.046000px;}
.x61{left:819.801000px;}
.x5d{left:821.607000px;}
.x6b{left:824.641500px;}
.x62{left:826.608000px;}
.x5e{left:828.414000px;}
.x2a{left:832.990500px;}
@media print{
.v8{vertical-align:-59.008000pt;}
.va{vertical-align:-21.946667pt;}
.v4{vertical-align:-15.888000pt;}
.v5{vertical-align:-13.301333pt;}
.v1{vertical-align:-10.624000pt;}
.v2{vertical-align:-1.282560pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:4.896000pt;}
.vd{vertical-align:11.120000pt;}
.v6{vertical-align:13.301333pt;}
.v15{vertical-align:17.360000pt;}
.v3{vertical-align:19.290667pt;}
.vf{vertical-align:21.941333pt;}
.v11{vertical-align:27.360000pt;}
.v14{vertical-align:31.877333pt;}
.ve{vertical-align:33.066667pt;}
.v16{vertical-align:37.761600pt;}
.v12{vertical-align:46.432000pt;}
.vb{vertical-align:58.464000pt;}
.vc{vertical-align:70.128000pt;}
.v10{vertical-align:75.450667pt;}
.v9{vertical-align:80.410667pt;}
.v7{vertical-align:117.472000pt;}
.lsf{letter-spacing:-0.197728pt;}
.ls3{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.000711pt;}
.ls9{letter-spacing:0.002825pt;}
.ls4c{letter-spacing:0.009600pt;}
.ls4b{letter-spacing:0.024000pt;}
.ls8{letter-spacing:0.122912pt;}
.ls4d{letter-spacing:0.124800pt;}
.ls40{letter-spacing:0.380773pt;}
.ls22{letter-spacing:0.482502pt;}
.ls1c{letter-spacing:0.487835pt;}
.ls26{letter-spacing:0.501867pt;}
.ls3e{letter-spacing:0.504442pt;}
.ls2d{letter-spacing:0.507200pt;}
.ls23{letter-spacing:0.507733pt;}
.ls2e{letter-spacing:0.596214pt;}
.ls17{letter-spacing:0.601548pt;}
.lsc{letter-spacing:0.635362pt;}
.lse{letter-spacing:0.640696pt;}
.ls1d{letter-spacing:0.662400pt;}
.ls2b{letter-spacing:0.664089pt;}
.ls20{letter-spacing:0.675918pt;}
.ls42{letter-spacing:0.678400pt;}
.ls46{letter-spacing:0.883733pt;}
.ls43{letter-spacing:0.889067pt;}
.ls12{letter-spacing:0.958584pt;}
.ls1b{letter-spacing:1.009067pt;}
.ls3f{letter-spacing:1.019878pt;}
.ls29{letter-spacing:1.142029pt;}
.ls34{letter-spacing:1.147362pt;}
.ls1f{letter-spacing:1.166652pt;}
.ls10{letter-spacing:1.262881pt;}
.ls21{letter-spacing:1.296508pt;}
.ls39{letter-spacing:1.302029pt;}
.ls31{letter-spacing:1.307362pt;}
.ls1e{letter-spacing:1.319121pt;}
.ls1a{letter-spacing:1.331985pt;}
.ls25{letter-spacing:1.995362pt;}
.ls4a{letter-spacing:3.123467pt;}
.ls35{letter-spacing:3.158400pt;}
.ls2a{letter-spacing:3.163733pt;}
.lsd{letter-spacing:3.318400pt;}
.lsb{letter-spacing:3.323733pt;}
.ls14{letter-spacing:3.389089pt;}
.ls24{letter-spacing:3.774584pt;}
.ls13{letter-spacing:3.779918pt;}
.ls27{letter-spacing:3.825067pt;}
.ls0{letter-spacing:9.298933pt;}
.ls11{letter-spacing:9.762422pt;}
.ls3c{letter-spacing:9.767756pt;}
.ls47{letter-spacing:10.361104pt;}
.ls2{letter-spacing:10.626533pt;}
.ls49{letter-spacing:10.839336pt;}
.ls3a{letter-spacing:10.968429pt;}
.ls33{letter-spacing:10.973762pt;}
.ls18{letter-spacing:10.995733pt;}
.ls5{letter-spacing:11.317514pt;}
.ls19{letter-spacing:11.629762pt;}
.ls53{letter-spacing:11.728150pt;}
.ls4e{letter-spacing:11.954133pt;}
.ls52{letter-spacing:11.959467pt;}
.ls4f{letter-spacing:11.975328pt;}
.ls50{letter-spacing:12.175412pt;}
.ls56{letter-spacing:12.177457pt;}
.ls54{letter-spacing:12.489244pt;}
.ls6{letter-spacing:13.017797pt;}
.ls7{letter-spacing:13.177199pt;}
.ls45{letter-spacing:13.571733pt;}
.ls32{letter-spacing:14.105251pt;}
.ls51{letter-spacing:14.748068pt;}
.ls30{letter-spacing:15.395096pt;}
.ls38{letter-spacing:15.400429pt;}
.ls37{letter-spacing:16.020214pt;}
.ls2f{letter-spacing:16.025548pt;}
.ls16{letter-spacing:16.061762pt;}
.ls55{letter-spacing:17.869637pt;}
.ls15{letter-spacing:18.531918pt;}
.ls44{letter-spacing:18.864508pt;}
.ls41{letter-spacing:21.435733pt;}
.ls3d{letter-spacing:22.280429pt;}
.ls1{letter-spacing:25.292137pt;}
.ls28{letter-spacing:54.455121pt;}
.lsa{letter-spacing:81.154400pt;}
.ls4{letter-spacing:83.815733pt;}
.ls36{letter-spacing:284.102029pt;}
.ls3b{letter-spacing:287.819362pt;}
.ls2c{letter-spacing:489.862029pt;}
.ws3b{word-spacing:-13.360000pt;}
.ws4a{word-spacing:-13.283467pt;}
.ws3c{word-spacing:-11.955200pt;}
.ws24{word-spacing:-10.626800pt;}
.ws48{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws53{word-spacing:-4.675780pt;}
.ws5e{word-spacing:-2.922363pt;}
.ws70{word-spacing:-2.869229pt;}
.ws1e{word-spacing:-2.816095pt;}
.ws38{word-spacing:-1.965953pt;}
.ws37{word-spacing:-1.647150pt;}
.ws56{word-spacing:-1.328347pt;}
.ws5b{word-spacing:-1.222079pt;}
.ws62{word-spacing:-1.168945pt;}
.ws71{word-spacing:-1.099878pt;}
.ws57{word-spacing:-1.062677pt;}
.ws9d{word-spacing:-0.860774pt;}
.ws1b{word-spacing:-0.850142pt;}
.ws6a{word-spacing:-0.595101pt;}
.ws2c{word-spacing:-0.531339pt;}
.ws64{word-spacing:-0.425071pt;}
.wsb7{word-spacing:-0.382566pt;}
.ws28{word-spacing:-0.318803pt;}
.wsae{word-spacing:-0.286925pt;}
.ws10{word-spacing:-0.265669pt;}
.ws82{word-spacing:-0.239104pt;}
.wsc{word-spacing:-0.212535pt;}
.ws99{word-spacing:-0.191283pt;}
.wsf{word-spacing:-0.159402pt;}
.ws87{word-spacing:-0.143462pt;}
.ws1c{word-spacing:-0.106268pt;}
.ws66{word-spacing:-0.095642pt;}
.wsa{word-spacing:-0.053134pt;}
.ws86{word-spacing:-0.047821pt;}
.ws90{word-spacing:-0.026142pt;}
.wsa5{word-spacing:-0.006656pt;}
.ws8c{word-spacing:-0.006281pt;}
.wsb3{word-spacing:-0.005879pt;}
.ws92{word-spacing:-0.005410pt;}
.ws8a{word-spacing:-0.004267pt;}
.wsb2{word-spacing:-0.003430pt;}
.wsb5{word-spacing:-0.003046pt;}
.ws23{word-spacing:-0.002878pt;}
.ws4{word-spacing:-0.000346pt;}
.ws0{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.047821pt;}
.wse{word-spacing:0.053134pt;}
.ws3{word-spacing:0.074387pt;}
.ws83{word-spacing:0.095642pt;}
.ws22{word-spacing:0.106268pt;}
.ws2{word-spacing:0.111581pt;}
.ws72{word-spacing:0.143462pt;}
.ws16{word-spacing:0.159402pt;}
.ws68{word-spacing:0.170029pt;}
.ws88{word-spacing:0.191283pt;}
.ws1d{word-spacing:0.212535pt;}
.ws5a{word-spacing:0.239104pt;}
.ws2b{word-spacing:0.265669pt;}
.ws50{word-spacing:0.318803pt;}
.wsbd{word-spacing:0.334746pt;}
.wsa7{word-spacing:0.382566pt;}
.ws6c{word-spacing:0.425071pt;}
.ws93{word-spacing:0.430387pt;}
.ws35{word-spacing:0.478205pt;}
.wsa3{word-spacing:0.526029pt;}
.ws6f{word-spacing:0.531339pt;}
.wsa1{word-spacing:0.573850pt;}
.ws59{word-spacing:0.584473pt;}
.ws2f{word-spacing:0.637606pt;}
.ws9e{word-spacing:0.717312pt;}
.ws12{word-spacing:0.743874pt;}
.ws73{word-spacing:0.765133pt;}
.wsb{word-spacing:0.797008pt;}
.ws77{word-spacing:0.903276pt;}
.ws9b{word-spacing:0.908595pt;}
.ws76{word-spacing:0.956410pt;}
.wsba{word-spacing:0.956416pt;}
.wsa4{word-spacing:1.099878pt;}
.ws6d{word-spacing:1.168945pt;}
.wsbc{word-spacing:1.195520pt;}
.ws5d{word-spacing:1.222079pt;}
.ws4e{word-spacing:1.321888pt;}
.ws4b{word-spacing:1.326989pt;}
.wsa6{word-spacing:1.338982pt;}
.ws4c{word-spacing:1.462219pt;}
.ws6e{word-spacing:1.540882pt;}
.ws26{word-spacing:1.594016pt;}
.ws60{word-spacing:1.700284pt;}
.ws2e{word-spacing:1.806551pt;}
.ws80{word-spacing:1.817190pt;}
.wsb4{word-spacing:1.912832pt;}
.ws7a{word-spacing:2.019087pt;}
.ws7c{word-spacing:2.125355pt;}
.ws54{word-spacing:2.137600pt;}
.ws42{word-spacing:2.178489pt;}
.ws96{word-spacing:2.199757pt;}
.ws6{word-spacing:2.231335pt;}
.ws21{word-spacing:2.284756pt;}
.ws81{word-spacing:2.295398pt;}
.wsa9{word-spacing:2.343219pt;}
.ws74{word-spacing:2.391024pt;}
.ws69{word-spacing:2.422910pt;}
.ws15{word-spacing:2.444158pt;}
.wsbb{word-spacing:2.486682pt;}
.ws7{word-spacing:2.550432pt;}
.ws30{word-spacing:2.709827pt;}
.wsb0{word-spacing:2.725786pt;}
.ws41{word-spacing:2.762961pt;}
.ws97{word-spacing:2.773606pt;}
.wsb9{word-spacing:2.860544pt;}
.wsa2{word-spacing:2.860885pt;}
.ws9a{word-spacing:2.862541pt;}
.wsb8{word-spacing:2.865152pt;}
.ws94{word-spacing:2.865161pt;}
.wsb1{word-spacing:2.866637pt;}
.wsa8{word-spacing:2.867874pt;}
.ws8e{word-spacing:2.869248pt;}
.wsaa{word-spacing:2.871270pt;}
.wsa0{word-spacing:2.871987pt;}
.ws78{word-spacing:2.874717pt;}
.ws2d{word-spacing:3.028630pt;}
.ws95{word-spacing:3.046911pt;}
.ws9c{word-spacing:3.060531pt;}
.ws52{word-spacing:3.066106pt;}
.wsbe{word-spacing:3.108352pt;}
.ws39{word-spacing:3.134898pt;}
.wsb6{word-spacing:3.186151pt;}
.ws17{word-spacing:3.188032pt;}
.ws79{word-spacing:3.188158pt;}
.ws5f{word-spacing:3.347456pt;}
.ws20{word-spacing:3.453701pt;}
.ws3f{word-spacing:3.559969pt;}
.ws3e{word-spacing:3.613103pt;}
.ws43{word-spacing:3.825638pt;}
.ws1a{word-spacing:3.825664pt;}
.ws27{word-spacing:4.144442pt;}
.ws31{word-spacing:4.197575pt;}
.ws91{word-spacing:4.351693pt;}
.ws34{word-spacing:4.356977pt;}
.ws47{word-spacing:4.463245pt;}
.ws58{word-spacing:4.569513pt;}
.ws7b{word-spacing:4.622646pt;}
.wsab{word-spacing:4.686438pt;}
.ws25{word-spacing:4.728914pt;}
.ws8d{word-spacing:4.782080pt;}
.ws2a{word-spacing:4.835182pt;}
.ws65{word-spacing:4.925542pt;}
.ws6b{word-spacing:4.941450pt;}
.ws3a{word-spacing:5.260253pt;}
.ws85{word-spacing:5.308109pt;}
.ws44{word-spacing:5.313387pt;}
.ws63{word-spacing:5.366521pt;}
.ws9f{word-spacing:5.451571pt;}
.ws40{word-spacing:5.472788pt;}
.ws61{word-spacing:5.525922pt;}
.ws32{word-spacing:5.579056pt;}
.ws51{word-spacing:5.844725pt;}
.wsad{word-spacing:5.929779pt;}
.ws7f{word-spacing:5.950993pt;}
.ws11{word-spacing:6.057261pt;}
.ws75{word-spacing:6.110395pt;}
.ws29{word-spacing:6.163529pt;}
.ws9{word-spacing:6.216662pt;}
.ws45{word-spacing:6.322930pt;}
.ws8b{word-spacing:6.490998pt;}
.ws1f{word-spacing:6.588599pt;}
.ws13{word-spacing:6.641733pt;}
.ws36{word-spacing:6.694867pt;}
.wsaf{word-spacing:6.742733pt;}
.ws14{word-spacing:6.748001pt;}
.ws46{word-spacing:6.854269pt;}
.ws33{word-spacing:7.066804pt;}
.ws49{word-spacing:7.385607pt;}
.wsd{word-spacing:7.438741pt;}
.ws7e{word-spacing:7.651277pt;}
.ws5c{word-spacing:10.361104pt;}
.ws19{word-spacing:10.467372pt;}
.ws84{word-spacing:13.638692pt;}
.ws7d{word-spacing:15.196286pt;}
.ws8{word-spacing:15.821475pt;}
.wsac{word-spacing:17.311130pt;}
.ws18{word-spacing:24.317442pt;}
.ws1{word-spacing:25.293814pt;}
.ws4d{word-spacing:40.510933pt;}
.ws4f{word-spacing:40.516267pt;}
.ws98{word-spacing:43.020800pt;}
.ws8f{word-spacing:66.931200pt;}
.ws67{word-spacing:221.220885pt;}
.ws55{word-spacing:628.281333pt;}
.ws89{word-spacing:1040.572800pt;}
._5{margin-left:-7.077478pt;}
._9{margin-left:-5.419654pt;}
._1{margin-left:-4.091296pt;}
._10{margin-left:-3.081764pt;}
._2{margin-left:-1.338970pt;}
._1d{width:1.009547pt;}
._1e{width:2.020484pt;}
._21{width:2.919558pt;}
._18{width:3.931906pt;}
._20{width:4.937238pt;}
._1f{width:5.844725pt;}
._0{width:11.530016pt;}
._2b{width:13.283467pt;}
._19{width:14.441789pt;}
._16{width:15.674491pt;}
._8{width:16.641523pt;}
._e{width:17.725446pt;}
._15{width:18.809377pt;}
._1a{width:20.254626pt;}
._7{width:21.147279pt;}
._3{width:23.063232pt;}
._c{width:24.388445pt;}
._14{width:25.408611pt;}
._d{width:26.513799pt;}
._f{width:28.543311pt;}
._4{width:29.648896pt;}
._13{width:31.083312pt;}
._1c{width:33.591227pt;}
._17{width:35.440289pt;}
._b{width:37.629401pt;}
._a{width:39.709110pt;}
._3b{width:54.993920pt;}
._6{width:61.662986pt;}
._2e{width:63.745126pt;}
._38{width:78.665216pt;}
._35{width:124.206522pt;}
._25{width:126.033532pt;}
._33{width:127.346790pt;}
._32{width:130.120397pt;}
._30{width:133.228749pt;}
._2f{width:136.002355pt;}
._37{width:145.231770pt;}
._2c{width:151.057810pt;}
._31{width:158.286848pt;}
._28{width:164.343143pt;}
._39{width:169.476915pt;}
._22{width:178.317257pt;}
._36{width:185.401242pt;}
._34{width:192.478720pt;}
._24{width:194.151149pt;}
._26{width:197.497296pt;}
._23{width:210.516380pt;}
._2a{width:221.229685pt;}
._29{width:234.499019pt;}
._27{width:263.460267pt;}
._1b{width:1250.677696pt;}
._11{width:1528.711733pt;}
._3a{width:1612.968000pt;}
._2d{width:2217.666400pt;}
._12{width:2238.919733pt;}
.fsc{font-size:31.880533pt;}
.fsd{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fsf{font-size:38.755733pt;}
.fs7{font-size:40.381867pt;}
.fs5{font-size:42.077867pt;}
.fs3{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fse{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:53.440000pt;}
.fs6{font-size:55.365867pt;}
.fsb{font-size:56.112000pt;}
.fs4{font-size:63.761067pt;}
.fsa{font-size:74.387733pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:5.594616pt;}
.yb6{bottom:6.895400pt;}
.y172{bottom:7.569333pt;}
.yef{bottom:8.959131pt;}
.y82{bottom:9.126366pt;}
.yec{bottom:9.148380pt;}
.y17a{bottom:10.055070pt;}
.y171{bottom:10.768533pt;}
.y179{bottom:22.695065pt;}
.y170{bottom:23.328410pt;}
.y40{bottom:40.818667pt;}
.y3f{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.y1e5{bottom:94.188000pt;}
.ydc{bottom:94.780000pt;}
.y74{bottom:95.502667pt;}
.yd4{bottom:102.518667pt;}
.y14{bottom:105.020000pt;}
.y3e{bottom:107.209333pt;}
.y1b2{bottom:107.225333pt;}
.y1e4{bottom:111.210667pt;}
.yda{bottom:111.876000pt;}
.y73{bottom:114.073333pt;}
.ydb{bottom:116.216000pt;}
.y17f{bottom:119.194667pt;}
.y10e{bottom:119.885333pt;}
.y13{bottom:120.920000pt;}
.yd3{bottom:121.089333pt;}
.y1b1{bottom:124.248000pt;}
.y3d{bottom:125.780000pt;}
.y1e3{bottom:128.233333pt;}
.yb4{bottom:130.218667pt;}
.yd8{bottom:131.812700pt;}
.y72{bottom:132.642667pt;}
.y177{bottom:132.930667pt;}
.y17d{bottom:136.289333pt;}
.y12{bottom:136.821333pt;}
.y10d{bottom:138.456000pt;}
.yd2{bottom:139.660000pt;}
.y17e{bottom:140.629333pt;}
.y1b0{bottom:141.270667pt;}
.y8f{bottom:141.468000pt;}
.y3c{bottom:144.350667pt;}
.y1e2{bottom:145.256000pt;}
.yb3{bottom:148.788000pt;}
.y175{bottom:150.026667pt;}
.y11{bottom:152.721333pt;}
.y17c{bottom:153.385333pt;}
.y176{bottom:154.365333pt;}
.y71{bottom:155.198667pt;}
.y10c{bottom:157.026667pt;}
.yd1{bottom:158.229333pt;}
.y1af{bottom:158.293333pt;}
.y8e{bottom:160.038667pt;}
.y1e1{bottom:162.278667pt;}
.y3b{bottom:162.920000pt;}
.y13b{bottom:163.497333pt;}
.y174{bottom:167.121333pt;}
.yb1{bottom:167.220000pt;}
.yb0{bottom:167.358667pt;}
.y10{bottom:168.621333pt;}
.y17b{bottom:170.481333pt;}
.yb2{bottom:172.181333pt;}
.y70{bottom:173.769333pt;}
.y1ae{bottom:175.316000pt;}
.y10a{bottom:175.596000pt;}
.yd0{bottom:176.800000pt;}
.y8d{bottom:178.609333pt;}
.y1e0{bottom:179.301333pt;}
.y10b{bottom:180.418667pt;}
.y3a{bottom:181.490667pt;}
.y13a{bottom:182.068000pt;}
.y173{bottom:184.217333pt;}
.yf{bottom:184.522667pt;}
.y6f{bottom:192.338667pt;}
.y178{bottom:193.076000pt;}
.y109{bottom:194.166667pt;}
.ycf{bottom:195.370667pt;}
.y1df{bottom:196.324000pt;}
.y8c{bottom:197.180000pt;}
.y140{bottom:199.114667pt;}
.yaf{bottom:199.358667pt;}
.y39{bottom:200.061333pt;}
.ye{bottom:200.422667pt;}
.y139{bottom:200.637333pt;}
.y16f{bottom:206.812000pt;}
.y1ad{bottom:209.361333pt;}
.y6e{bottom:210.909333pt;}
.y108{bottom:212.737333pt;}
.y1de{bottom:213.346667pt;}
.yce{bottom:213.940000pt;}
.y13e{bottom:216.210667pt;}
.y16e{bottom:216.481333pt;}
.y38{bottom:218.632000pt;}
.y138{bottom:219.208000pt;}
.y8b{bottom:219.734667pt;}
.y13f{bottom:220.550667pt;}
.yd{bottom:224.293333pt;}
.y1ac{bottom:226.384000pt;}
.y1dd{bottom:230.369333pt;}
.y107{bottom:231.308000pt;}
.ycd{bottom:232.510667pt;}
.y13d{bottom:233.306667pt;}
.yae{bottom:233.404000pt;}
.y6d{bottom:233.464000pt;}
.y16d{bottom:233.813333pt;}
.y37{bottom:237.201333pt;}
.y137{bottom:237.778667pt;}
.y8a{bottom:238.305333pt;}
.yc{bottom:240.193333pt;}
.y1ab{bottom:243.406667pt;}
.y1dc{bottom:247.392000pt;}
.y106{bottom:249.877333pt;}
.y13c{bottom:250.402667pt;}
.ycc{bottom:251.081333pt;}
.y16c{bottom:251.145333pt;}
.y6c{bottom:252.034667pt;}
.y36{bottom:255.772000pt;}
.yb{bottom:256.093333pt;}
.y136{bottom:256.348000pt;}
.y89{bottom:256.874667pt;}
.y1aa{bottom:260.430667pt;}
.yed{bottom:262.105333pt;}
.y1db{bottom:264.414667pt;}
.yad{bottom:267.449333pt;}
.y105{bottom:268.448000pt;}
.y16b{bottom:268.478667pt;}
.y6b{bottom:270.605333pt;}
.ya{bottom:271.994667pt;}
.ycb{bottom:273.636000pt;}
.y35{bottom:274.342667pt;}
.y135{bottom:274.918667pt;}
.y88{bottom:275.445333pt;}
.y1e8{bottom:277.233333pt;}
.y1a9{bottom:277.453333pt;}
.y1da{bottom:281.437333pt;}
.yeb{bottom:284.698667pt;}
.y16a{bottom:285.810667pt;}
.yac{bottom:286.020000pt;}
.y104{bottom:287.018667pt;}
.y9{bottom:287.894667pt;}
.y6a{bottom:289.176000pt;}
.yca{bottom:292.206667pt;}
.y34{bottom:292.912000pt;}
.y134{bottom:293.489333pt;}
.y87{bottom:294.016000pt;}
.y1e7{bottom:294.256000pt;}
.y1a8{bottom:294.476000pt;}
.y1d9{bottom:298.460000pt;}
.y169{bottom:303.142667pt;}
.y8{bottom:303.794667pt;}
.yab{bottom:304.589333pt;}
.y103{bottom:305.588000pt;}
.y69{bottom:307.745333pt;}
.yc9{bottom:310.777333pt;}
.y1e6{bottom:311.278667pt;}
.y33{bottom:311.482667pt;}
.y1a7{bottom:311.498667pt;}
.y133{bottom:312.058667pt;}
.y86{bottom:312.585333pt;}
.y1d8{bottom:315.482667pt;}
.y7{bottom:319.696000pt;}
.y168{bottom:320.474667pt;}
.y102{bottom:324.158667pt;}
.yaa{bottom:326.237333pt;}
.y68{bottom:326.316000pt;}
.y1a6{bottom:328.521333pt;}
.y32{bottom:330.053333pt;}
.y132{bottom:330.629333pt;}
.y1d7{bottom:332.506667pt;}
.yc8{bottom:333.332000pt;}
.y85{bottom:335.141333pt;}
.y167{bottom:337.806667pt;}
.ya9{bottom:338.090667pt;}
.ya7{bottom:340.853333pt;}
.y6{bottom:340.909333pt;}
.y101{bottom:342.729333pt;}
.y67{bottom:344.886667pt;}
.y1a5{bottom:345.544000pt;}
.y31{bottom:348.622667pt;}
.y131{bottom:349.200000pt;}
.y1d6{bottom:349.529333pt;}
.y166{bottom:355.138667pt;}
.ya8{bottom:355.200000pt;}
.y5{bottom:356.809333pt;}
.yff{bottom:361.298667pt;}
.y1a4{bottom:362.566667pt;}
.ya6{bottom:363.022667pt;}
.y66{bottom:363.456000pt;}
.yc7{bottom:364.748000pt;}
.y100{bottom:366.121333pt;}
.y1d5{bottom:366.552000pt;}
.y84{bottom:366.810667pt;}
.y155{bottom:367.193333pt;}
.y12f{bottom:367.769333pt;}
.y30{bottom:371.178667pt;}
.y165{bottom:372.470667pt;}
.y130{bottom:372.592000pt;}
.y4{bottom:372.710667pt;}
.y1a3{bottom:379.589333pt;}
.yfe{bottom:379.869333pt;}
.ya5{bottom:381.593333pt;}
.y65{bottom:382.026667pt;}
.yc6{bottom:383.317333pt;}
.y1d4{bottom:383.574667pt;}
.y83{bottom:383.906667pt;}
.y154{bottom:385.764000pt;}
.y12e{bottom:386.340000pt;}
.y3{bottom:388.610667pt;}
.y164{bottom:389.804000pt;}
.y1a2{bottom:396.612000pt;}
.yfd{bottom:398.440000pt;}
.ya4{bottom:400.164000pt;}
.y64{bottom:400.597333pt;}
.yc5{bottom:401.888000pt;}
.y153{bottom:404.333333pt;}
.y12d{bottom:404.910667pt;}
.y81{bottom:406.500267pt;}
.y163{bottom:407.136000pt;}
.y2{bottom:409.824000pt;}
.y1a1{bottom:413.634667pt;}
.yfc{bottom:417.009333pt;}
.y1d3{bottom:417.620000pt;}
.ya3{bottom:418.733333pt;}
.y63{bottom:419.166667pt;}
.yc4{bottom:420.458667pt;}
.y12c{bottom:423.481333pt;}
.y1{bottom:425.725333pt;}
.y152{bottom:428.245333pt;}
.y1a0{bottom:430.657333pt;}
.y162{bottom:433.944000pt;}
.y1d2{bottom:434.642667pt;}
.yfb{bottom:435.580000pt;}
.ya2{bottom:437.304000pt;}
.y62{bottom:437.737333pt;}
.yc3{bottom:439.029333pt;}
.y2f{bottom:441.589333pt;}
.y12b{bottom:442.050667pt;}
.y19f{bottom:447.680000pt;}
.y1d1{bottom:451.665333pt;}
.y151{bottom:452.157333pt;}
.yfa{bottom:454.150667pt;}
.ya1{bottom:455.874667pt;}
.y61{bottom:456.308000pt;}
.yc2{bottom:457.598667pt;}
.y2e{bottom:460.158667pt;}
.y19e{bottom:464.702667pt;}
.y161{bottom:468.454667pt;}
.y1d0{bottom:468.688000pt;}
.y150{bottom:470.728000pt;}
.yf9{bottom:472.721333pt;}
.ya0{bottom:474.444000pt;}
.y60{bottom:474.877333pt;}
.yc1{bottom:476.169333pt;}
.y12a{bottom:479.558667pt;}
.y19d{bottom:481.725333pt;}
.y1cf{bottom:485.710667pt;}
.y14f{bottom:489.297333pt;}
.yf8{bottom:491.290667pt;}
.y129{bottom:492.177333pt;}
.y9f{bottom:493.014667pt;}
.y5f{bottom:493.448000pt;}
.y160{bottom:493.756000pt;}
.y2d{bottom:494.669333pt;}
.y19c{bottom:498.748000pt;}
.y1ce{bottom:502.733333pt;}
.y128{bottom:504.797333pt;}
.y14e{bottom:507.868000pt;}
.yc0{bottom:508.760000pt;}
.yf7{bottom:509.861333pt;}
.yd7{bottom:510.760000pt;}
.y15f{bottom:511.088000pt;}
.y9e{bottom:511.585333pt;}
.y5e{bottom:512.018667pt;}
.y2c{bottom:513.240000pt;}
.y19b{bottom:515.770667pt;}
.y127{bottom:517.416000pt;}
.y1cd{bottom:519.756000pt;}
.ybf{bottom:522.746667pt;}
.y14d{bottom:526.438667pt;}
.ybd{bottom:527.329333pt;}
.yf6{bottom:528.432000pt;}
.yd6{bottom:529.330667pt;}
.y5d{bottom:530.589333pt;}
.ybe{bottom:531.524000pt;}
.y2b{bottom:531.810667pt;}
.y19a{bottom:532.793333pt;}
.y9d{bottom:534.140000pt;}
.y126{bottom:535.200000pt;}
.y15e{bottom:536.390667pt;}
.y1cc{bottom:536.778667pt;}
.yf5{bottom:547.001333pt;}
.y5c{bottom:549.158667pt;}
.y199{bottom:549.816000pt;}
.y14c{bottom:550.349333pt;}
.y2a{bottom:550.380000pt;}
.y125{bottom:551.672000pt;}
.y15d{bottom:553.722667pt;}
.y1cb{bottom:553.801333pt;}
.yd5{bottom:561.000000pt;}
.ybc{bottom:564.929333pt;}
.y9c{bottom:565.556000pt;}
.yf4{bottom:565.572000pt;}
.y198{bottom:566.838667pt;}
.y5b{bottom:567.729333pt;}
.y124{bottom:568.142667pt;}
.y29{bottom:568.950667pt;}
.y1ca{bottom:570.824000pt;}
.y15c{bottom:571.056000pt;}
.y14b{bottom:574.261333pt;}
.ybb{bottom:583.500000pt;}
.y197{bottom:583.861333pt;}
.y9b{bottom:584.126667pt;}
.yf3{bottom:584.142667pt;}
.y123{bottom:584.614667pt;}
.y5a{bottom:586.300000pt;}
.y28{bottom:587.521333pt;}
.y1c9{bottom:587.846667pt;}
.y15b{bottom:588.388000pt;}
.y14a{bottom:592.832000pt;}
.y196{bottom:600.885333pt;}
.y122{bottom:601.086667pt;}
.yba{bottom:602.070667pt;}
.y9a{bottom:602.696000pt;}
.y59{bottom:604.869333pt;}
.y27{bottom:606.090667pt;}
.y149{bottom:611.402667pt;}
.y15a{bottom:613.689333pt;}
.yf2{bottom:615.812000pt;}
.y121{bottom:617.557333pt;}
.y195{bottom:617.908000pt;}
.yb9{bottom:620.640000pt;}
.y99{bottom:621.266667pt;}
.y1c8{bottom:621.892000pt;}
.y58{bottom:623.440000pt;}
.y26{bottom:624.661333pt;}
.y148{bottom:629.972000pt;}
.y159{bottom:631.022667pt;}
.yf0{bottom:632.906667pt;}
.y120{bottom:634.029333pt;}
.y194{bottom:634.930667pt;}
.yf1{bottom:637.246667pt;}
.y1c7{bottom:638.914667pt;}
.y98{bottom:639.837333pt;}
.y57{bottom:642.010667pt;}
.yb8{bottom:643.196000pt;}
.y25{bottom:643.232000pt;}
.y158{bottom:648.354667pt;}
.y147{bottom:648.542667pt;}
.y11f{bottom:650.501333pt;}
.y193{bottom:651.953333pt;}
.yee{bottom:655.501333pt;}
.y1c6{bottom:655.937333pt;}
.y97{bottom:658.406667pt;}
.y11e{bottom:658.470667pt;}
.y56{bottom:660.580000pt;}
.y24{bottom:661.801333pt;}
.y157{bottom:665.686667pt;}
.y192{bottom:668.976000pt;}
.yb7{bottom:671.770667pt;}
.y146{bottom:672.454667pt;}
.y1c5{bottom:672.961333pt;}
.yea{bottom:675.165333pt;}
.y96{bottom:676.977333pt;}
.y55{bottom:679.150667pt;}
.y23{bottom:680.372000pt;}
.y156{bottom:683.018667pt;}
.y191{bottom:685.998667pt;}
.y11d{bottom:688.784000pt;}
.y1c4{bottom:689.984000pt;}
.y145{bottom:691.024000pt;}
.ye9{bottom:693.736000pt;}
.yb5{bottom:694.364000pt;}
.y95{bottom:695.548000pt;}
.y54{bottom:697.721333pt;}
.y22{bottom:698.942667pt;}
.y190{bottom:703.021333pt;}
.y11c{bottom:705.254667pt;}
.y1c3{bottom:707.006667pt;}
.ye8{bottom:712.306667pt;}
.y144{bottom:714.936000pt;}
.y53{bottom:716.290667pt;}
.y80{bottom:716.676000pt;}
.y21{bottom:717.513333pt;}
.y18f{bottom:720.044000pt;}
.y11b{bottom:721.726667pt;}
.y1c2{bottom:724.029333pt;}
.y94{bottom:727.217333pt;}
.ye7{bottom:730.876000pt;}
.y143{bottom:733.506667pt;}
.y52{bottom:734.861333pt;}
.y7f{bottom:735.246667pt;}
.y20{bottom:736.082667pt;}
.y18e{bottom:737.066667pt;}
.y11a{bottom:738.198667pt;}
.y1c1{bottom:741.052000pt;}
.ye6{bottom:749.446667pt;}
.y142{bottom:752.077333pt;}
.y51{bottom:753.432000pt;}
.y7e{bottom:753.817333pt;}
.y18d{bottom:754.089333pt;}
.y1f{bottom:754.653333pt;}
.y119{bottom:754.669333pt;}
.y1c0{bottom:758.074667pt;}
.ye5{bottom:768.017333pt;}
.y18c{bottom:771.112000pt;}
.y118{bottom:771.141333pt;}
.y50{bottom:772.002667pt;}
.y7c{bottom:772.386667pt;}
.y1e{bottom:773.224000pt;}
.y141{bottom:774.632000pt;}
.y1bf{bottom:775.097333pt;}
.y7d{bottom:777.209333pt;}
.ye4{bottom:786.586667pt;}
.y117{bottom:787.613333pt;}
.y18b{bottom:788.134667pt;}
.y4f{bottom:790.572000pt;}
.y7b{bottom:790.957333pt;}
.y1d{bottom:791.793333pt;}
.y1be{bottom:792.120000pt;}
.y116{bottom:804.084000pt;}
.ye3{bottom:805.157333pt;}
.y4e{bottom:809.142667pt;}
.y7a{bottom:809.528000pt;}
.y115{bottom:820.556000pt;}
.y18a{bottom:822.180000pt;}
.y1c{bottom:822.994667pt;}
.ye2{bottom:823.728000pt;}
.y1bd{bottom:826.165333pt;}
.y4d{bottom:827.713333pt;}
.y114{bottom:828.526667pt;}
.y79{bottom:832.082667pt;}
.y1b{bottom:837.341333pt;}
.y189{bottom:839.202667pt;}
.ye1{bottom:842.297333pt;}
.y1bc{bottom:843.188000pt;}
.y4c{bottom:846.282667pt;}
.y1a{bottom:851.688000pt;}
.y188{bottom:856.225333pt;}
.y113{bottom:858.838667pt;}
.y1bb{bottom:860.210667pt;}
.ye0{bottom:860.868000pt;}
.y78{bottom:863.498667pt;}
.y4b{bottom:864.853333pt;}
.y187{bottom:873.248000pt;}
.y1ba{bottom:877.233333pt;}
.ydf{bottom:879.438667pt;}
.y77{bottom:882.068000pt;}
.y4a{bottom:883.424000pt;}
.y186{bottom:890.270667pt;}
.y112{bottom:890.532000pt;}
.y19{bottom:890.885333pt;}
.y1b9{bottom:894.256000pt;}
.yde{bottom:898.009333pt;}
.y76{bottom:900.638667pt;}
.y49{bottom:901.993333pt;}
.y185{bottom:907.293333pt;}
.y111{bottom:907.626667pt;}
.y1b8{bottom:911.278667pt;}
.ydd{bottom:916.578667pt;}
.y48{bottom:920.564000pt;}
.y75{bottom:923.194667pt;}
.y184{bottom:924.316000pt;}
.y110{bottom:924.722667pt;}
.y18{bottom:925.396000pt;}
.y1b7{bottom:928.301333pt;}
.y93{bottom:935.149333pt;}
.y47{bottom:939.134667pt;}
.y183{bottom:941.340000pt;}
.y1b6{bottom:945.324000pt;}
.y17{bottom:953.250667pt;}
.y92{bottom:953.720000pt;}
.y45{bottom:957.704000pt;}
.y182{bottom:958.362667pt;}
.y1b5{bottom:962.346667pt;}
.y46{bottom:962.526667pt;}
.y91{bottom:972.289333pt;}
.y181{bottom:975.385333pt;}
.y44{bottom:976.274667pt;}
.y1b4{bottom:979.369333pt;}
.y16{bottom:981.106667pt;}
.y90{bottom:990.860000pt;}
.y180{bottom:992.408000pt;}
.y43{bottom:994.845333pt;}
.y1b3{bottom:996.392000pt;}
.y42{bottom:1013.414667pt;}
.y10f{bottom:1018.237333pt;}
.y41{bottom:1066.841333pt;}
.h1f{height:24.648646pt;}
.h15{height:25.610524pt;}
.h9{height:26.761523pt;}
.h12{height:29.599908pt;}
.h2{height:33.771789pt;}
.ha{height:35.212691pt;}
.hb{height:36.666735pt;}
.h5{height:38.256384pt;}
.h6{height:38.596538pt;}
.h3{height:38.947124pt;}
.h11{height:41.524400pt;}
.h1b{height:43.290575pt;}
.he{height:43.421286pt;}
.h26{height:44.390625pt;}
.h8{height:45.907968pt;}
.h1e{height:46.950484pt;}
.h7{height:48.245551pt;}
.h16{height:48.702857pt;}
.hd{height:49.421563pt;}
.h19{height:51.892641pt;}
.h10{height:55.952068pt;}
.hf{height:55.957402pt;}
.h13{height:57.799269pt;}
.h17{height:61.688021pt;}
.h4{height:68.861952pt;}
.h1a{height:75.379524pt;}
.h22{height:80.122884pt;}
.h23{height:80.128218pt;}
.h25{height:82.152225pt;}
.h1c{height:93.968218pt;}
.h14{height:119.597355pt;}
.hc{height:289.162400pt;}
.h18{height:332.334800pt;}
.h1d{height:365.905167pt;}
.h20{height:369.453333pt;}
.h21{height:371.198667pt;}
.h24{height:791.736000pt;}
.h27{height:833.625333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:506.296927pt;}
.w3{width:541.265200pt;}
.w8{width:557.147333pt;}
.w7{width:565.525467pt;}
.w5{width:651.634533pt;}
.w6{width:652.216933pt;}
.w2{width:673.743867pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x3a{left:59.790800pt;}
.x5b{left:70.844133pt;}
.x66{left:72.472000pt;}
.x76{left:74.862667pt;}
.x75{left:76.309333pt;}
.x68{left:84.174667pt;}
.x6f{left:113.898533pt;}
.x73{left:118.088667pt;}
.x51{left:126.028000pt;}
.x74{left:134.531337pt;}
.x70{left:142.989467pt;}
.x3b{left:161.392459pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x40{left:223.618667pt;}
.x6c{left:249.262667pt;}
.x4{left:250.204000pt;}
.x46{left:260.449333pt;}
.x47{left:270.804000pt;}
.x39{left:273.958667pt;}
.x17{left:277.984000pt;}
.x59{left:279.197333pt;}
.x41{left:288.954667pt;}
.x18{left:291.268000pt;}
.x5a{left:292.481333pt;}
.x19{left:298.042667pt;}
.x4a{left:306.837333pt;}
.x4b{left:308.378667pt;}
.x1a{left:311.326667pt;}
.x5c{left:315.150346pt;}
.x48{left:331.205333pt;}
.x54{left:335.744000pt;}
.x6d{left:339.964000pt;}
.xf{left:347.502667pt;}
.x55{left:349.028000pt;}
.x10{left:354.144000pt;}
.x11{left:357.434667pt;}
.x42{left:358.490667pt;}
.x49{left:360.346667pt;}
.x12{left:364.076000pt;}
.x65{left:369.718667pt;}
.x69{left:371.518667pt;}
.x1c{left:388.106667pt;}
.x1d{left:394.157333pt;}
.x30{left:396.449333pt;}
.x3e{left:397.866667pt;}
.x4c{left:402.524000pt;}
.x31{left:409.733333pt;}
.x3f{left:411.150667pt;}
.x52{left:428.806667pt;}
.x2d{left:434.657333pt;}
.x20{left:436.350667pt;}
.x2e{left:447.941333pt;}
.x21{left:449.634667pt;}
.x7{left:452.188000pt;}
.x8{left:458.830667pt;}
.x9{left:462.094667pt;}
.x2f{left:464.612000pt;}
.xa{left:468.736000pt;}
.x45{left:469.980000pt;}
.x44{left:472.109333pt;}
.x43{left:476.436000pt;}
.xd{left:481.725333pt;}
.xe{left:488.366667pt;}
.x38{left:491.641333pt;}
.x5{left:499.752000pt;}
.x1b{left:502.214667pt;}
.x56{left:503.589950pt;}
.x6{left:506.393333pt;}
.x53{left:510.968000pt;}
.x23{left:512.500000pt;}
.x6e{left:518.941333pt;}
.x6a{left:519.862667pt;}
.x24{left:525.784000pt;}
.x25{left:529.048000pt;}
.x57{left:530.738667pt;}
.x58{left:536.364000pt;}
.x22{left:537.414667pt;}
.x26{left:542.332000pt;}
.x1e{left:544.446667pt;}
.x1f{left:550.496000pt;}
.xb{left:554.236000pt;}
.xc{left:560.877333pt;}
.x4d{left:563.110667pt;}
.x4e{left:569.161333pt;}
.x2b{left:583.754667pt;}
.x2c{left:597.038667pt;}
.x71{left:607.958667pt;}
.x72{left:613.584000pt;}
.x13{left:622.529333pt;}
.x14{left:629.170667pt;}
.x3c{left:630.597333pt;}
.x15{left:632.425333pt;}
.x4f{left:635.737333pt;}
.x16{left:639.066667pt;}
.x50{left:641.788000pt;}
.x3d{left:643.881333pt;}
.x5f{left:654.757333pt;}
.x60{left:660.806667pt;}
.x67{left:667.737333pt;}
.x63{left:669.018667pt;}
.x64{left:675.069333pt;}
.x37{left:676.081333pt;}
.x32{left:677.480000pt;}
.x33{left:690.764000pt;}
.x34{left:694.150667pt;}
.x35{left:707.434667pt;}
.x27{left:710.614667pt;}
.x36{left:720.644000pt;}
.x28{left:723.897333pt;}
.x29{left:727.152000pt;}
.x61{left:728.712000pt;}
.x5d{left:730.317333pt;}
.x6b{left:733.014667pt;}
.x62{left:734.762667pt;}
.x5e{left:736.368000pt;}
.x2a{left:740.436000pt;}
}




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