
    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_7e393d5bd607ccfc93159093.woff')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_1b4bfaab367e7d875bfc312f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_8d0d38cb2ef1bf4c466195ab.woff')format("woff");}.ff3{font-family:ff3;line-height:1.054000;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_8d1bd4911b2021c37fb9477e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e2f5a385981b19c366294011.woff')format("woff");}.ff5{font-family:ff5;line-height:0.968000;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_78acca2c247f286b9ad371c2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.974000;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_047f193222d58977f894a6a4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_1ad3cd31ca5cb300a13d083f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.888000;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_795b4cbeff529ea5a66440ed.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f93d89cb64be8f5f2f16f06d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.806000;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_c178e22dda1a43f3c483232a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.708000;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_a07b4692d1702f2f536ecb78.woff')format("woff");}.ffc{font-family:ffc;line-height:0.945000;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_504953d145e94e9a23b75d59.woff')format("woff");}.ffd{font-family:ffd;line-height:0.704000;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_011b6fa108ba22bb033abfb7.woff')format("woff");}.ffe{font-family:ffe;line-height:0.839000;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_6e1a0a6879f41ea673a3cf75.woff')format("woff");}.fff{font-family:fff;line-height:0.526000;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_f2a9181973a54f2b8c9c0ee6.woff')format("woff");}.ff10{font-family:ff10;line-height:0.964000;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;}
.m3{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);}
.m10{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);}
.m1f{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);}
.m21{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);}
.m1a{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);}
.m1d{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);}
.m29{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);}
.m15{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);}
.m14{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);}
.m11{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);}
.m1e{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);}
.m28{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);}
.mf{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);}
.m25{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);}
.m5{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);}
.m13{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.md{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);}
.m16{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);}
.m1c{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);}
.m2{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m12{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);}
.mc{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);}
.m20{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);}
.m23{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);}
.m1b{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);}
.m24{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);}
.m6{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);}
.m9{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);}
.me{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);}
.m19{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);}
.m18{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);}
.m22{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);}
.mb{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);}
.m1{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);}
.m17{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:-16.872000px;}
.v3{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000557px;}
.ls13{letter-spacing:0.001002px;}
.ls17{letter-spacing:0.001405px;}
.ls10{letter-spacing:0.002352px;}
.ls0{letter-spacing:2.987551px;}
.ls7{letter-spacing:2.990496px;}
.ls3{letter-spacing:2.992214px;}
.ls5{letter-spacing:6.606831px;}
.lsd{letter-spacing:7.681490px;}
.ls4{letter-spacing:11.213400px;}
.lsc{letter-spacing:12.307559px;}
.ls6{letter-spacing:13.449600px;}
.lsa{letter-spacing:13.610995px;}
.ls16{letter-spacing:15.355559px;}
.ls15{letter-spacing:15.360557px;}
.ls21{letter-spacing:15.361559px;}
.ls20{letter-spacing:15.362352px;}
.ls19{letter-spacing:15.433559px;}
.ls18{letter-spacing:15.440352px;}
.lsf{letter-spacing:15.547738px;}
.ls9{letter-spacing:15.905528px;}
.ls14{letter-spacing:17.425002px;}
.ls2{letter-spacing:19.127551px;}
.ls12{letter-spacing:20.929559px;}
.ls11{letter-spacing:20.934557px;}
.ls1{letter-spacing:32.278800px;}
.ls1b{letter-spacing:32.449559px;}
.ls1a{letter-spacing:32.450352px;}
.ls22{letter-spacing:32.724919px;}
.lsb{letter-spacing:32.728762px;}
.ls1f{letter-spacing:38.635559px;}
.ls1e{letter-spacing:38.642352px;}
.ls1d{letter-spacing:41.755559px;}
.ls1c{letter-spacing:41.756352px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8c{word-spacing:-55.293996px;}
.ws91{word-spacing:-39.961452px;}
.ws8a{word-spacing:-37.880561px;}
.ws89{word-spacing:-37.863314px;}
.ws2{word-spacing:-16.139400px;}
.ws11{word-spacing:-13.449600px;}
.ws105{word-spacing:-12.272850px;}
.ws25{word-spacing:-11.208150px;}
.wse6{word-spacing:-4.626662px;}
.wsc1{word-spacing:-4.303872px;}
.wsee{word-spacing:-4.250074px;}
.ws7d{word-spacing:-4.196275px;}
.ws4f{word-spacing:-4.088678px;}
.wsc7{word-spacing:-4.034880px;}
.wscd{word-spacing:-3.981082px;}
.wsef{word-spacing:-3.873485px;}
.wsed{word-spacing:-3.819686px;}
.ws24{word-spacing:-3.721106px;}
.ws7c{word-spacing:-3.712090px;}
.ws82{word-spacing:-3.658291px;}
.ws9d{word-spacing:-3.604493px;}
.wscc{word-spacing:-3.496896px;}
.ws78{word-spacing:-3.443098px;}
.wsa5{word-spacing:-3.389299px;}
.ws42{word-spacing:-3.227904px;}
.wsbe{word-spacing:-3.174106px;}
.ws6b{word-spacing:-3.120307px;}
.ws6e{word-spacing:-3.066509px;}
.wsd9{word-spacing:-3.012710px;}
.ws3b{word-spacing:-2.958912px;}
.ws8b{word-spacing:-2.797517px;}
.ws8d{word-spacing:-2.743718px;}
.ws30{word-spacing:-2.689956px;}
.ws5c{word-spacing:-2.689920px;}
.ws32{word-spacing:-2.645123px;}
.ws21{word-spacing:-2.636122px;}
.wsb3{word-spacing:-2.474726px;}
.wsd5{word-spacing:-2.420928px;}
.ws18{word-spacing:-2.205734px;}
.ws77{word-spacing:-2.044339px;}
.ws15{word-spacing:-1.990541px;}
.wsc2{word-spacing:-1.936742px;}
.wse0{word-spacing:-1.882944px;}
.wse{word-spacing:-1.829146px;}
.ws9f{word-spacing:-1.775347px;}
.ws8f{word-spacing:-1.721549px;}
.ws6a{word-spacing:-1.667750px;}
.ws83{word-spacing:-1.560154px;}
.ws6d{word-spacing:-1.472742px;}
.ws70{word-spacing:-1.452557px;}
.ws62{word-spacing:-1.344960px;}
.wsec{word-spacing:-1.291162px;}
.ws84{word-spacing:-1.237363px;}
.wsa2{word-spacing:-1.183565px;}
.ws31{word-spacing:-1.131829px;}
.ws5b{word-spacing:-1.129766px;}
.ws111{word-spacing:-1.129102px;}
.ws60{word-spacing:-1.075968px;}
.wsd0{word-spacing:-1.022170px;}
.wse7{word-spacing:-0.969974px;}
.ws5a{word-spacing:-0.968371px;}
.ws53{word-spacing:-0.914573px;}
.ws6{word-spacing:-0.851819px;}
.ws63{word-spacing:-0.806976px;}
.ws5d{word-spacing:-0.753178px;}
.ws54{word-spacing:-0.699379px;}
.ws88{word-spacing:-0.645581px;}
.ws39{word-spacing:-0.591782px;}
.wsc8{word-spacing:-0.537984px;}
.wsc5{word-spacing:-0.484186px;}
.ws93{word-spacing:-0.430387px;}
.wsb9{word-spacing:-0.392731px;}
.ws4c{word-spacing:-0.376589px;}
.ws23{word-spacing:-0.322790px;}
.ws12{word-spacing:-0.268992px;}
.ws99{word-spacing:-0.245457px;}
.wsf{word-spacing:-0.215194px;}
.wsb0{word-spacing:-0.184064px;}
.ws10{word-spacing:-0.178387px;}
.ws2e{word-spacing:-0.161395px;}
.ws109{word-spacing:-0.147274px;}
.wsa{word-spacing:-0.134498px;}
.ws19{word-spacing:-0.107597px;}
.ws10b{word-spacing:-0.098183px;}
.wsb{word-spacing:-0.089665px;}
.wseb{word-spacing:-0.077470px;}
.ws103{word-spacing:-0.064558px;}
.wsc{word-spacing:-0.053798px;}
.wsba{word-spacing:-0.049091px;}
.wsf0{word-spacing:-0.045729px;}
.ws5{word-spacing:-0.044833px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.044833px;}
.wsbb{word-spacing:0.049091px;}
.ws27{word-spacing:0.053798px;}
.ws7{word-spacing:0.089665px;}
.ws108{word-spacing:0.098183px;}
.ws28{word-spacing:0.107597px;}
.ws90{word-spacing:0.109910px;}
.wsbc{word-spacing:0.147274px;}
.ws2b{word-spacing:0.161395px;}
.wsc9{word-spacing:0.207725px;}
.ws2a{word-spacing:0.215194px;}
.ws4{word-spacing:0.224163px;}
.ws3a{word-spacing:0.268992px;}
.ws107{word-spacing:0.294548px;}
.ws1e{word-spacing:0.322790px;}
.ws17{word-spacing:0.376589px;}
.ws38{word-spacing:0.430387px;}
.wsd7{word-spacing:0.484186px;}
.wsd3{word-spacing:0.537984px;}
.ws1c{word-spacing:0.591782px;}
.wsde{word-spacing:0.645581px;}
.wsdd{word-spacing:0.699379px;}
.wsdf{word-spacing:0.753178px;}
.ws50{word-spacing:0.806976px;}
.ws65{word-spacing:0.860774px;}
.ws79{word-spacing:0.914573px;}
.ws22{word-spacing:0.968371px;}
.wsa4{word-spacing:1.022170px;}
.wsa1{word-spacing:1.129766px;}
.ws5f{word-spacing:1.183565px;}
.ws43{word-spacing:1.237363px;}
.ws7f{word-spacing:1.291162px;}
.ws8e{word-spacing:1.344960px;}
.ws9c{word-spacing:1.398758px;}
.ws46{word-spacing:1.452557px;}
.wsbd{word-spacing:1.506355px;}
.ws81{word-spacing:1.560154px;}
.wsdc{word-spacing:1.613952px;}
.wsd2{word-spacing:1.667750px;}
.ws29{word-spacing:1.721549px;}
.ws47{word-spacing:1.775347px;}
.ws86{word-spacing:1.829146px;}
.ws3e{word-spacing:1.882944px;}
.ws34{word-spacing:1.898707px;}
.ws36{word-spacing:1.913220px;}
.ws35{word-spacing:1.936742px;}
.ws110{word-spacing:1.963656px;}
.ws56{word-spacing:2.044339px;}
.ws45{word-spacing:2.098138px;}
.ws76{word-spacing:2.151936px;}
.wsb2{word-spacing:2.259533px;}
.ws48{word-spacing:2.313331px;}
.ws3d{word-spacing:2.367130px;}
.ws75{word-spacing:2.420928px;}
.ws1d{word-spacing:2.474726px;}
.ws66{word-spacing:2.528525px;}
.ws10e{word-spacing:2.552753px;}
.ws80{word-spacing:2.582323px;}
.ws9{word-spacing:2.600291px;}
.ws10a{word-spacing:2.601844px;}
.ws9e{word-spacing:2.636122px;}
.ws10c{word-spacing:2.700027px;}
.wscf{word-spacing:2.709977px;}
.ws68{word-spacing:2.743718px;}
.wsc0{word-spacing:2.797517px;}
.ws64{word-spacing:2.851315px;}
.ws71{word-spacing:2.958912px;}
.ws61{word-spacing:3.012710px;}
.ws55{word-spacing:3.066509px;}
.ws1b{word-spacing:3.120307px;}
.ws9b{word-spacing:3.174106px;}
.wse2{word-spacing:3.227904px;}
.ws5e{word-spacing:3.389299px;}
.wsd8{word-spacing:3.443098px;}
.wsea{word-spacing:3.496896px;}
.wsfa{word-spacing:3.550694px;}
.wse3{word-spacing:3.604493px;}
.wsa3{word-spacing:3.658291px;}
.ws67{word-spacing:3.712090px;}
.wse5{word-spacing:3.764360px;}
.ws40{word-spacing:3.765888px;}
.ws26{word-spacing:3.765938px;}
.ws2d{word-spacing:3.819686px;}
.wse8{word-spacing:3.927283px;}
.wsd6{word-spacing:3.981082px;}
.wsc6{word-spacing:3.998741px;}
.ws20{word-spacing:4.034880px;}
.wsda{word-spacing:4.088678px;}
.ws96{word-spacing:4.142477px;}
.ws10d{word-spacing:4.221860px;}
.ws41{word-spacing:4.250074px;}
.ws87{word-spacing:4.411469px;}
.wsb1{word-spacing:4.519066px;}
.wsb7{word-spacing:4.572864px;}
.ws69{word-spacing:4.626662px;}
.wsdb{word-spacing:4.680461px;}
.wsfb{word-spacing:4.734259px;}
.wscb{word-spacing:4.788058px;}
.ws72{word-spacing:4.895654px;}
.ws74{word-spacing:4.949453px;}
.ws73{word-spacing:5.003251px;}
.ws44{word-spacing:5.110848px;}
.ws2c{word-spacing:5.164646px;}
.wsc4{word-spacing:5.218445px;}
.wse1{word-spacing:5.272243px;}
.ws37{word-spacing:5.326042px;}
.wsc3{word-spacing:5.379840px;}
.wsf5{word-spacing:5.433638px;}
.ws4d{word-spacing:5.541235px;}
.ws97{word-spacing:5.648832px;}
.ws16{word-spacing:5.756429px;}
.wsce{word-spacing:5.864026px;}
.ws4e{word-spacing:5.917824px;}
.wsbf{word-spacing:5.971622px;}
.ws13{word-spacing:6.025421px;}
.wsb4{word-spacing:6.079219px;}
.wsa0{word-spacing:6.133018px;}
.ws101{word-spacing:6.294413px;}
.wsb6{word-spacing:6.509606px;}
.wsf3{word-spacing:6.617203px;}
.ws3c{word-spacing:6.778598px;}
.wsfc{word-spacing:6.886195px;}
.wsd4{word-spacing:7.047590px;}
.wsa6{word-spacing:7.069214px;}
.ws95{word-spacing:7.101389px;}
.wsfd{word-spacing:7.155187px;}
.wsf1{word-spacing:7.208986px;}
.ws1a{word-spacing:7.262784px;}
.wse9{word-spacing:7.370381px;}
.wsca{word-spacing:7.424179px;}
.ws14{word-spacing:7.585574px;}
.ws2f{word-spacing:8.123558px;}
.ws7e{word-spacing:8.177357px;}
.ws3f{word-spacing:8.284954px;}
.ws1f{word-spacing:8.392550px;}
.wsf9{word-spacing:8.769139px;}
.wsf4{word-spacing:9.091930px;}
.ws85{word-spacing:9.253325px;}
.ws102{word-spacing:9.468518px;}
.wsd1{word-spacing:9.683712px;}
.wsad{word-spacing:9.718447px;}
.ws4a{word-spacing:9.898906px;}
.ws9a{word-spacing:10.490688px;}
.wsa9{word-spacing:10.759680px;}
.wsf6{word-spacing:11.028672px;}
.wsaa{word-spacing:11.059297px;}
.ws49{word-spacing:11.136269px;}
.ws7b{word-spacing:11.781850px;}
.wsb8{word-spacing:11.831027px;}
.ws7a{word-spacing:11.835648px;}
.ws98{word-spacing:11.978302px;}
.wsb5{word-spacing:11.980685px;}
.ws6c{word-spacing:12.223759px;}
.ws58{word-spacing:12.228438px;}
.ws92{word-spacing:12.804019px;}
.ws104{word-spacing:13.107404px;}
.wsf8{word-spacing:13.126810px;}
.wsf7{word-spacing:13.503398px;}
.wsf2{word-spacing:13.772390px;}
.wse4{word-spacing:14.035128px;}
.wsfe{word-spacing:14.902157px;}
.ws59{word-spacing:15.332544px;}
.ws100{word-spacing:15.655334px;}
.wsff{word-spacing:16.031923px;}
.ws6f{word-spacing:16.074842px;}
.ws3{word-spacing:16.139400px;}
.ws4b{word-spacing:16.731302px;}
.ws52{word-spacing:17.161690px;}
.ws10f{word-spacing:18.262001px;}
.ws94{word-spacing:18.313972px;}
.ws33{word-spacing:19.289930px;}
.ws57{word-spacing:20.873779px;}
.ws106{word-spacing:21.158393px;}
.ws0{word-spacing:23.147887px;}
.ws51{word-spacing:32.214242px;}
.wsa7{word-spacing:32.386637px;}
.wsa8{word-spacing:35.401972px;}
.wsae{word-spacing:38.573453px;}
.wsd{word-spacing:38.657330px;}
.wsaf{word-spacing:41.599972px;}
.wsab{word-spacing:41.693760px;}
.wsac{word-spacing:44.707972px;}
._1e{margin-left:-7.287764px;}
._0{margin-left:-5.949658px;}
._28{margin-left:-4.788058px;}
._1{margin-left:-3.625573px;}
._15{margin-left:-2.420928px;}
._2{margin-left:-1.306013px;}
._3{width:1.300145px;}
._10{width:2.480594px;}
._21{width:3.981082px;}
._2e{width:5.018103px;}
._d{width:7.666272px;}
._23{width:9.091930px;}
._c{width:11.208150px;}
._4{width:12.693494px;}
._b{width:14.256767px;}
._6{width:15.407422px;}
._e{width:16.468999px;}
._8{width:17.968666px;}
._a{width:19.475021px;}
._5{width:21.654146px;}
._13{width:23.133312px;}
._1f{width:25.231450px;}
._16{width:26.415014px;}
._9{width:28.297958px;}
._29{width:29.320128px;}
._22{width:30.557491px;}
._f{width:31.633459px;}
._20{width:32.814547px;}
._7{width:34.215782px;}
._2a{width:35.399347px;}
._12{width:36.582912px;}
._11{width:38.734800px;}
._26{width:41.107846px;}
._24{width:42.608333px;}
._2f{width:49.333133px;}
._27{width:54.270947px;}
._25{width:56.003249px;}
._2c{width:63.804902px;}
._14{width:66.441024px;}
._1d{width:72.255350px;}
._2b{width:77.953882px;}
._2d{width:80.482406px;}
._1b{width:146.881469px;}
._19{width:157.068711px;}
._18{width:173.121599px;}
._1a{width:272.850001px;}
._1c{width:295.137497px;}
._17{width:297.592067px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:26.899200px;}
.fs3{font-size:31.382400px;}
.fs8{font-size:35.865600px;}
.fs4{font-size:44.832600px;}
.fs2{font-size:45.190200px;}
.fsb{font-size:45.729000px;}
.fsa{font-size:47.820600px;}
.fs9{font-size:49.091400px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:64.557600px;}
.fs6{font-size:77.469600px;}
.fs0{font-size:92.963400px;}
.y0{bottom:0.000000px;}
.y33{bottom:243.472500px;}
.yda{bottom:246.208500px;}
.y4e{bottom:246.265500px;}
.y1b7{bottom:247.000500px;}
.y81{bottom:247.422000px;}
.yf6{bottom:248.583000px;}
.y32{bottom:251.542500px;}
.y118{bottom:253.429500px;}
.y1f5{bottom:254.773500px;}
.y189{bottom:255.688500px;}
.yb5{bottom:256.114500px;}
.y1da{bottom:256.435500px;}
.y1d1{bottom:257.185500px;}
.y182{bottom:257.332500px;}
.y12e{bottom:258.054000px;}
.yd9{bottom:259.657500px;}
.y4d{bottom:259.716000px;}
.y31{bottom:260.295000px;}
.y155{bottom:262.234500px;}
.y1b6{bottom:263.139000px;}
.y80{bottom:263.560500px;}
.yd8{bottom:263.877000px;}
.yf5{bottom:264.723000px;}
.y1f4{bottom:269.500500px;}
.y117{bottom:269.569500px;}
.y167{bottom:270.087000px;}
.y188{bottom:271.827000px;}
.yb4{bottom:272.253000px;}
.y1d9{bottom:272.574000px;}
.y4c{bottom:273.165000px;}
.y1d0{bottom:273.325500px;}
.y181{bottom:273.471000px;}
.y30{bottom:273.744000px;}
.y12d{bottom:274.192500px;}
.y4b{bottom:277.384500px;}
.y154{bottom:278.374500px;}
.y1b5{bottom:279.279000px;}
.yf4{bottom:280.863000px;}
.y1f3{bottom:284.227500px;}
.y116{bottom:285.708000px;}
.y166{bottom:286.225500px;}
.y2f{bottom:287.328000px;}
.y187{bottom:287.967000px;}
.y7f{bottom:288.355500px;}
.yb3{bottom:288.393000px;}
.y1d8{bottom:288.714000px;}
.y1cf{bottom:289.464000px;}
.y180{bottom:289.611000px;}
.y12c{bottom:290.332500px;}
.yd7{bottom:292.768500px;}
.y153{bottom:294.514500px;}
.y1b4{bottom:295.417500px;}
.yf3{bottom:297.001500px;}
.y1f2{bottom:298.954500px;}
.y2e{bottom:300.778500px;}
.y115{bottom:301.848000px;}
.y165{bottom:302.365500px;}
.y186{bottom:304.105500px;}
.yb2{bottom:304.531500px;}
.y1d7{bottom:304.854000px;}
.y1ce{bottom:305.604000px;}
.y17f{bottom:305.751000px;}
.y12b{bottom:306.471000px;}
.yd6{bottom:308.907000px;}
.y152{bottom:310.653000px;}
.y1b3{bottom:311.557500px;}
.yf2{bottom:313.141500px;}
.y1f1{bottom:313.683000px;}
.y2d{bottom:314.620500px;}
.y114{bottom:317.986500px;}
.y164{bottom:318.505500px;}
.y185{bottom:320.245500px;}
.yb1{bottom:320.671500px;}
.y7e{bottom:320.992500px;}
.y12a{bottom:322.611000px;}
.y151{bottom:326.793000px;}
.y1b2{bottom:327.697500px;}
.y2c{bottom:328.069500px;}
.y1f0{bottom:328.410000px;}
.yf1{bottom:329.280000px;}
.y4a{bottom:330.045000px;}
.y17e{bottom:330.544500px;}
.yd5{bottom:333.702000px;}
.y113{bottom:334.126500px;}
.y163{bottom:334.644000px;}
.y1cd{bottom:335.014500px;}
.y184{bottom:336.385500px;}
.yb0{bottom:336.811500px;}
.y1d6{bottom:337.132500px;}
.y129{bottom:338.751000px;}
.y150{bottom:342.931500px;}
.y1ef{bottom:343.137000px;}
.y1b1{bottom:343.836000px;}
.yf0{bottom:345.420000px;}
.y49{bottom:346.185000px;}
.y112{bottom:350.266500px;}
.y162{bottom:350.784000px;}
.y183{bottom:352.524000px;}
.yaf{bottom:352.950000px;}
.y1d5{bottom:353.272500px;}
.y128{bottom:354.889500px;}
.y2b{bottom:356.047500px;}
.y1ee{bottom:357.864000px;}
.y1cc{bottom:358.255500px;}
.y14f{bottom:359.071500px;}
.y1b0{bottom:359.976000px;}
.yef{bottom:361.560000px;}
.y48{bottom:362.325000px;}
.y7d{bottom:364.428000px;}
.y111{bottom:366.405000px;}
.y161{bottom:366.924000px;}
.y17d{bottom:368.664000px;}
.yae{bottom:369.090000px;}
.y1d4{bottom:369.411000px;}
.y127{bottom:371.029500px;}
.yd4{bottom:371.820000px;}
.y2a{bottom:372.186000px;}
.y14e{bottom:375.211500px;}
.y1af{bottom:376.116000px;}
.yee{bottom:377.698500px;}
.y7c{bottom:380.568000px;}
.y1ed{bottom:381.246000px;}
.y110{bottom:382.545000px;}
.y160{bottom:383.062500px;}
.y17c{bottom:384.804000px;}
.yad{bottom:385.230000px;}
.y1d3{bottom:385.551000px;}
.y126{bottom:387.169500px;}
.yd3{bottom:387.960000px;}
.y29{bottom:388.326000px;}
.y47{bottom:389.221500px;}
.y14d{bottom:391.350000px;}
.y1ae{bottom:392.254500px;}
.yed{bottom:393.838500px;}
.y7b{bottom:396.706500px;}
.y10f{bottom:398.685000px;}
.y1ec{bottom:400.614000px;}
.y17b{bottom:400.942500px;}
.yac{bottom:401.368500px;}
.y1cb{bottom:401.689500px;}
.y125{bottom:403.308000px;}
.yd2{bottom:404.100000px;}
.y28{bottom:404.464500px;}
.y46{bottom:405.361500px;}
.y14c{bottom:407.490000px;}
.y15f{bottom:407.857500px;}
.y1ad{bottom:408.394500px;}
.yec{bottom:409.978500px;}
.y7a{bottom:412.846500px;}
.y10e{bottom:414.823500px;}
.y17a{bottom:417.082500px;}
.yab{bottom:417.508500px;}
.y1ca{bottom:417.829500px;}
.y124{bottom:419.448000px;}
.yd1{bottom:420.238500px;}
.y27{bottom:420.604500px;}
.y45{bottom:421.501500px;}
.y14b{bottom:423.630000px;}
.y1ac{bottom:424.533000px;}
.yeb{bottom:426.117000px;}
.y79{bottom:428.986500px;}
.y10d{bottom:430.963500px;}
.y179{bottom:433.221000px;}
.y1eb{bottom:433.251000px;}
.yaa{bottom:433.647000px;}
.y1c9{bottom:433.969500px;}
.y123{bottom:435.586500px;}
.yd0{bottom:436.378500px;}
.y26{bottom:436.744500px;}
.y14a{bottom:439.768500px;}
.y1ab{bottom:440.673000px;}
.yea{bottom:442.257000px;}
.y78{bottom:445.125000px;}
.y15e{bottom:445.975500px;}
.y10c{bottom:447.102000px;}
.y1d2{bottom:447.240000px;}
.y44{bottom:448.401000px;}
.y178{bottom:449.361000px;}
.ya9{bottom:449.787000px;}
.y1c8{bottom:450.108000px;}
.y25{bottom:452.883000px;}
.y149{bottom:455.908500px;}
.y1aa{bottom:456.813000px;}
.ye9{bottom:458.395500px;}
.y122{bottom:460.381500px;}
.y77{bottom:461.265000px;}
.y15d{bottom:462.115500px;}
.y10b{bottom:463.242000px;}
.y177{bottom:465.501000px;}
.ya8{bottom:465.927000px;}
.y1c7{bottom:466.248000px;}
.y24{bottom:469.023000px;}
.y148{bottom:472.047000px;}
.y43{bottom:472.609500px;}
.y1a9{bottom:472.951500px;}
.ye8{bottom:474.535500px;}
.ycf{bottom:474.621000px;}
.y76{bottom:477.405000px;}
.y15c{bottom:478.255500px;}
.y10a{bottom:479.382000px;}
.y121{bottom:479.748000px;}
.y176{bottom:481.639500px;}
.ya7{bottom:482.065500px;}
.y1c6{bottom:482.388000px;}
.y23{bottom:485.163000px;}
.y147{bottom:488.187000px;}
.y42{bottom:488.749500px;}
.y1a8{bottom:489.091500px;}
.yce{bottom:489.348000px;}
.ye7{bottom:490.675500px;}
.y75{bottom:493.543500px;}
.y15b{bottom:494.394000px;}
.y109{bottom:495.520500px;}
.y175{bottom:497.779500px;}
.ya6{bottom:498.205500px;}
.y1c5{bottom:498.526500px;}
.y22{bottom:501.301500px;}
.ycd{bottom:504.076500px;}
.y146{bottom:504.327000px;}
.y41{bottom:504.888000px;}
.y1a7{bottom:505.231500px;}
.ye6{bottom:506.814000px;}
.y74{bottom:509.683500px;}
.y15a{bottom:510.534000px;}
.y108{bottom:511.660500px;}
.y174{bottom:513.919500px;}
.ya5{bottom:514.345500px;}
.y1c4{bottom:514.666500px;}
.y21{bottom:517.441500px;}
.y120{bottom:517.867500px;}
.y145{bottom:520.465500px;}
.y40{bottom:521.028000px;}
.y1a6{bottom:521.370000px;}
.ye5{bottom:522.954000px;}
.y73{bottom:525.822000px;}
.y159{bottom:526.674000px;}
.y107{bottom:527.800500px;}
.y173{bottom:530.058000px;}
.ya4{bottom:530.484000px;}
.y1c3{bottom:530.805000px;}
.ycc{bottom:530.881500px;}
.y20{bottom:533.580000px;}
.y11f{bottom:534.007500px;}
.y144{bottom:536.605500px;}
.y3f{bottom:537.168000px;}
.y1a5{bottom:537.510000px;}
.ye4{bottom:539.094000px;}
.y72{bottom:541.962000px;}
.y158{bottom:542.812500px;}
.y106{bottom:543.939000px;}
.y172{bottom:546.198000px;}
.ya3{bottom:546.624000px;}
.y1c2{bottom:546.945000px;}
.y1f{bottom:549.720000px;}
.y11e{bottom:550.147500px;}
.ycb{bottom:552.381000px;}
.y143{bottom:552.745500px;}
.y3e{bottom:553.306500px;}
.y1a4{bottom:553.648500px;}
.ye3{bottom:555.232500px;}
.y71{bottom:558.102000px;}
.y157{bottom:558.952500px;}
.y105{bottom:560.079000px;}
.y171{bottom:562.336500px;}
.ya2{bottom:562.762500px;}
.y1c1{bottom:563.085000px;}
.y1e{bottom:565.860000px;}
.y11d{bottom:566.286000px;}
.yca{bottom:567.108000px;}
.y1a3{bottom:569.788500px;}
.y3d{bottom:571.060500px;}
.ye2{bottom:571.372500px;}
.y70{bottom:574.240500px;}
.y104{bottom:576.217500px;}
.y142{bottom:577.539000px;}
.y170{bottom:578.476500px;}
.ya1{bottom:578.902500px;}
.y1c0{bottom:579.223500px;}
.yc9{bottom:581.835000px;}
.y1d{bottom:581.998500px;}
.y11c{bottom:582.426000px;}
.y1a2{bottom:585.928500px;}
.y3c{bottom:587.200500px;}
.ye1{bottom:587.511000px;}
.y156{bottom:588.363000px;}
.y6f{bottom:590.380500px;}
.y103{bottom:592.357500px;}
.y16f{bottom:594.616500px;}
.ya0{bottom:595.042500px;}
.y1bf{bottom:595.363500px;}
.y1c{bottom:598.138500px;}
.y1a1{bottom:602.067000px;}
.yc8{bottom:603.334500px;}
.y3b{bottom:603.339000px;}
.ye0{bottom:603.651000px;}
.y6e{bottom:606.520500px;}
.y102{bottom:608.497500px;}
.y16e{bottom:610.755000px;}
.y9f{bottom:611.181000px;}
.y1be{bottom:611.503500px;}
.y11b{bottom:611.835000px;}
.y1b{bottom:614.278500px;}
.y141{bottom:615.658500px;}
.yc7{bottom:618.061500px;}
.y1a0{bottom:618.207000px;}
.y3a{bottom:619.479000px;}
.ydf{bottom:619.791000px;}
.y6d{bottom:622.659000px;}
.y101{bottom:624.636000px;}
.y16d{bottom:626.895000px;}
.y9e{bottom:627.321000px;}
.y1bd{bottom:627.642000px;}
.y1a{bottom:630.417000px;}
.y140{bottom:631.797000px;}
.yc6{bottom:632.788500px;}
.y216{bottom:634.111500px;}
.y19f{bottom:634.347000px;}
.y39{bottom:635.617500px;}
.yde{bottom:635.929500px;}
.y6c{bottom:638.799000px;}
.y16c{bottom:643.035000px;}
.y9d{bottom:643.461000px;}
.y1bc{bottom:643.782000px;}
.y19{bottom:646.557000px;}
.yc5{bottom:647.515500px;}
.y13f{bottom:647.937000px;}
.y215{bottom:648.838500px;}
.y100{bottom:649.431000px;}
.y19e{bottom:650.485500px;}
.y38{bottom:651.757500px;}
.ydd{bottom:652.069500px;}
.y6b{bottom:654.937500px;}
.y11a{bottom:655.270500px;}
.y9c{bottom:659.599500px;}
.y1bb{bottom:659.920500px;}
.y18{bottom:662.695500px;}
.y214{bottom:663.567000px;}
.y13e{bottom:664.077000px;}
.y19d{bottom:666.625500px;}
.ydc{bottom:668.208000px;}
.yc4{bottom:669.015000px;}
.y6a{bottom:671.077500px;}
.y119{bottom:671.410500px;}
.y9b{bottom:675.739500px;}
.y37{bottom:675.967500px;}
.y1ba{bottom:676.060500px;}
.y213{bottom:678.294000px;}
.y17{bottom:678.835500px;}
.y13d{bottom:680.215500px;}
.y19c{bottom:682.764000px;}
.ydb{bottom:684.348000px;}
.y69{bottom:687.217500px;}
.yff{bottom:687.550500px;}
.y9a{bottom:691.878000px;}
.y36{bottom:692.106000px;}
.y1b9{bottom:692.200500px;}
.y212{bottom:693.021000px;}
.y16{bottom:694.975500px;}
.y13c{bottom:696.355500px;}
.y16b{bottom:698.217000px;}
.y19b{bottom:698.904000px;}
.yc3{bottom:700.488000px;}
.y68{bottom:703.356000px;}
.yfe{bottom:703.689000px;}
.y211{bottom:707.748000px;}
.y99{bottom:708.018000px;}
.y35{bottom:708.246000px;}
.y1ea{bottom:708.339000px;}
.y15{bottom:711.114000px;}
.y13b{bottom:712.495500px;}
.y16a{bottom:712.944000px;}
.y19a{bottom:715.044000px;}
.yc2{bottom:716.626500px;}
.y67{bottom:719.496000px;}
.yfd{bottom:719.829000px;}
.y1b8{bottom:721.609500px;}
.y210{bottom:722.475000px;}
.y98{bottom:724.158000px;}
.y34{bottom:724.384500px;}
.y1e9{bottom:724.479000px;}
.y169{bottom:727.671000px;}
.y13a{bottom:728.634000px;}
.y199{bottom:731.182500px;}
.yc1{bottom:732.766500px;}
.y66{bottom:735.636000px;}
.yfc{bottom:735.967500px;}
.y20f{bottom:737.203500px;}
.y97{bottom:740.296500px;}
.y14{bottom:740.524500px;}
.y1e8{bottom:740.619000px;}
.y168{bottom:742.398000px;}
.y139{bottom:744.774000px;}
.y198{bottom:747.322500px;}
.yc0{bottom:748.906500px;}
.y65{bottom:751.774500px;}
.y20e{bottom:751.930500px;}
.yfb{bottom:752.107500px;}
.y96{bottom:756.436500px;}
.y1e7{bottom:756.757500px;}
.y138{bottom:760.912500px;}
.y197{bottom:763.462500px;}
.ybf{bottom:765.045000px;}
.y20d{bottom:766.657500px;}
.y64{bottom:767.914500px;}
.yfa{bottom:768.247500px;}
.y95{bottom:772.576500px;}
.y1e6{bottom:772.897500px;}
.y137{bottom:777.052500px;}
.y196{bottom:779.601000px;}
.ybe{bottom:781.185000px;}
.y20c{bottom:781.384500px;}
.y63{bottom:784.053000px;}
.yf9{bottom:784.386000px;}
.y13{bottom:786.507000px;}
.y94{bottom:788.715000px;}
.y1e5{bottom:789.036000px;}
.y136{bottom:793.192500px;}
.y195{bottom:795.741000px;}
.y20b{bottom:796.111500px;}
.ybd{bottom:797.323500px;}
.y12{bottom:799.957500px;}
.y62{bottom:800.193000px;}
.yf8{bottom:800.526000px;}
.y93{bottom:804.855000px;}
.y1e4{bottom:805.176000px;}
.y135{bottom:809.331000px;}
.y20a{bottom:810.840000px;}
.y194{bottom:811.879500px;}
.y11{bottom:813.406500px;}
.ybc{bottom:813.463500px;}
.y61{bottom:816.333000px;}
.y1e3{bottom:821.316000px;}
.y134{bottom:825.471000px;}
.y209{bottom:825.567000px;}
.y193{bottom:828.019500px;}
.ybb{bottom:829.603500px;}
.y92{bottom:831.754500px;}
.y60{bottom:832.471500px;}
.y10{bottom:836.176500px;}
.y1e2{bottom:837.454500px;}
.y208{bottom:840.294000px;}
.y133{bottom:841.611000px;}
.y192{bottom:844.159500px;}
.yba{bottom:845.742000px;}
.y5f{bottom:848.611500px;}
.y91{bottom:849.507000px;}
.yf{bottom:849.627000px;}
.y1e1{bottom:853.594500px;}
.y207{bottom:855.021000px;}
.yf7{bottom:855.708000px;}
.y132{bottom:857.749500px;}
.y191{bottom:860.298000px;}
.yb9{bottom:861.882000px;}
.ye{bottom:863.076000px;}
.y5e{bottom:864.751500px;}
.y90{bottom:865.647000px;}
.y1e0{bottom:869.734500px;}
.y206{bottom:869.748000px;}
.y131{bottom:873.889500px;}
.y190{bottom:876.438000px;}
.yd{bottom:876.526500px;}
.yb8{bottom:878.022000px;}
.y5d{bottom:880.890000px;}
.y8f{bottom:883.401000px;}
.y205{bottom:884.476500px;}
.y1df{bottom:885.873000px;}
.yc{bottom:889.975500px;}
.y18f{bottom:892.578000px;}
.yb7{bottom:894.160500px;}
.y5c{bottom:897.030000px;}
.y204{bottom:899.203500px;}
.y1de{bottom:902.013000px;}
.yb{bottom:903.424500px;}
.y18e{bottom:908.716500px;}
.y8e{bottom:910.300500px;}
.y5b{bottom:913.168500px;}
.y203{bottom:913.930500px;}
.ya{bottom:916.875000px;}
.y1dd{bottom:918.151500px;}
.y18d{bottom:924.856500px;}
.y8d{bottom:926.439000px;}
.y202{bottom:928.657500px;}
.y130{bottom:929.071500px;}
.y5a{bottom:929.308500px;}
.y9{bottom:930.324000px;}
.y1dc{bottom:934.291500px;}
.y18c{bottom:940.995000px;}
.y8c{bottom:942.579000px;}
.y201{bottom:943.384500px;}
.y8{bottom:943.774500px;}
.y12f{bottom:943.798500px;}
.y59{bottom:945.448500px;}
.y7{bottom:957.223500px;}
.y200{bottom:958.113000px;}
.y8b{bottom:958.719000px;}
.y58{bottom:961.587000px;}
.y1db{bottom:963.702000px;}
.y18b{bottom:965.790000px;}
.y6{bottom:970.674000px;}
.y1ff{bottom:972.840000px;}
.y8a{bottom:974.857500px;}
.y57{bottom:977.727000px;}
.y18a{bottom:985.156500px;}
.y1fe{bottom:987.567000px;}
.y89{bottom:990.997500px;}
.y56{bottom:993.865500px;}
.y1fd{bottom:1002.294000px;}
.y88{bottom:1007.137500px;}
.y55{bottom:1010.005500px;}
.y5{bottom:1011.655500px;}
.y1fc{bottom:1017.022500px;}
.y87{bottom:1023.276000px;}
.y54{bottom:1026.145500px;}
.y4{bottom:1028.092500px;}
.y1fb{bottom:1031.749500px;}
.y86{bottom:1039.416000px;}
.y53{bottom:1042.284000px;}
.yb6{bottom:1045.129500px;}
.y1fa{bottom:1046.476500px;}
.y3{bottom:1055.256000px;}
.y85{bottom:1055.554500px;}
.y52{bottom:1058.424000px;}
.y1f9{bottom:1061.203500px;}
.y84{bottom:1071.694500px;}
.y51{bottom:1074.564000px;}
.y1f8{bottom:1075.930500px;}
.y83{bottom:1087.834500px;}
.y1f7{bottom:1090.659000px;}
.y50{bottom:1090.702500px;}
.y2{bottom:1092.556500px;}
.y82{bottom:1103.973000px;}
.y1f6{bottom:1105.386000px;}
.y4f{bottom:1120.113000px;}
.y1{bottom:1120.446000px;}
.hd{height:19.797811px;}
.hf{height:23.097446px;}
.h4{height:25.608038px;}
.h12{height:26.397082px;}
.h17{height:27.652378px;}
.h16{height:31.991981px;}
.h6{height:32.996794px;}
.h18{height:33.244983px;}
.h14{height:34.265797px;}
.h1a{height:34.363980px;}
.h13{height:34.756711px;}
.h19{height:36.131270px;}
.ha{height:36.583402px;}
.h15{height:37.658880px;}
.h5{height:38.089267px;}
.hc{height:38.511203px;}
.hb{height:39.228525px;}
.h8{height:39.595622px;}
.h11{height:40.348800px;}
.h9{height:43.899494px;}
.h10{height:45.706781px;}
.he{height:49.251082px;}
.h7{height:54.848477px;}
.h3{height:60.629203px;}
.h2{height:65.818087px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:133.936500px;}
.x8{left:138.820500px;}
.x67{left:140.191500px;}
.x9{left:145.075500px;}
.x7{left:147.387000px;}
.xa{left:151.674000px;}
.x57{left:156.021000px;}
.xb{left:157.929000px;}
.x68{left:162.682500px;}
.xc{left:164.529000px;}
.xd{left:170.782500px;}
.x70{left:174.846000px;}
.x10{left:178.005000px;}
.x2{left:195.973500px;}
.x3d{left:198.030000px;}
.x55{left:204.894000px;}
.x30{left:209.061000px;}
.x2e{left:211.693500px;}
.x2f{left:216.610500px;}
.x56{left:217.917000px;}
.x45{left:267.187500px;}
.x47{left:275.311500px;}
.x48{left:284.029500px;}
.x5e{left:288.576000px;}
.x3e{left:290.709000px;}
.x5f{left:294.829500px;}
.xe{left:299.511000px;}
.x1b{left:300.940500px;}
.xf{left:305.764500px;}
.x1c{left:307.194000px;}
.x46{left:310.482000px;}
.x3f{left:311.880000px;}
.x69{left:317.851500px;}
.x5c{left:324.691500px;}
.x6a{left:327.040500px;}
.x25{left:328.333500px;}
.x3{left:337.798500px;}
.x26{left:340.842000px;}
.x1d{left:341.893500px;}
.x4{left:344.052000px;}
.x5{left:352.033500px;}
.x1e{left:354.402000px;}
.x6f{left:356.307000px;}
.x6{left:358.288500px;}
.x1f{left:361.324500px;}
.x40{left:365.433000px;}
.x3b{left:368.403000px;}
.x20{left:373.831500px;}
.x5d{left:381.283500px;}
.x27{left:388.008000px;}
.x5a{left:408.513000px;}
.x21{left:415.549500px;}
.x22{left:421.803000px;}
.x5b{left:424.221000px;}
.x3c{left:426.099000px;}
.x23{left:427.210500px;}
.x24{left:433.464000px;}
.x63{left:451.656000px;}
.x11{left:453.928500px;}
.x1a{left:457.987500px;}
.x6b{left:460.183500px;}
.x16{left:467.379000px;}
.x17{left:477.442500px;}
.x59{left:480.277500px;}
.x28{left:482.541000px;}
.x6c{left:484.194000px;}
.x44{left:486.531000px;}
.x19{left:489.009000px;}
.x61{left:493.450500px;}
.x18{left:494.838000px;}
.x4f{left:505.398000px;}
.x29{left:507.702000px;}
.x62{left:518.098500px;}
.x42{left:542.506500px;}
.x64{left:561.856500px;}
.x50{left:573.229500px;}
.x2c{left:575.052000px;}
.x51{left:579.589500px;}
.x37{left:581.983500px;}
.x6e{left:584.841000px;}
.x4c{left:586.615500px;}
.x43{left:593.442000px;}
.x38{left:594.492000px;}
.x31{left:600.886500px;}
.x65{left:602.197500px;}
.x6d{left:610.449000px;}
.x32{left:613.395000px;}
.x66{left:627.420000px;}
.x49{left:652.722000px;}
.x4d{left:655.336500px;}
.x52{left:660.372000px;}
.x4a{left:662.713500px;}
.x4e{left:664.902000px;}
.x12{left:669.637500px;}
.x60{left:674.652000px;}
.x13{left:675.891000px;}
.x14{left:682.221000px;}
.x15{left:688.474500px;}
.x41{left:689.805000px;}
.x58{left:691.524000px;}
.x35{left:699.751500px;}
.x33{left:701.829000px;}
.x2d{left:706.327500px;}
.x36{left:712.260000px;}
.x34{left:714.337500px;}
.x39{left:722.019000px;}
.x53{left:727.866000px;}
.x3a{left:734.527500px;}
.x2a{left:740.769000px;}
.x54{left:749.949000px;}
.x2b{left:753.277500px;}
.x4b{left:756.694500px;}
@media print{
.v2{vertical-align:-14.997333pt;}
.v3{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000495pt;}
.ls13{letter-spacing:0.000891pt;}
.ls17{letter-spacing:0.001249pt;}
.ls10{letter-spacing:0.002091pt;}
.ls0{letter-spacing:2.655601pt;}
.ls7{letter-spacing:2.658219pt;}
.ls3{letter-spacing:2.659746pt;}
.ls5{letter-spacing:5.872739pt;}
.lsd{letter-spacing:6.827991pt;}
.ls4{letter-spacing:9.967467pt;}
.lsc{letter-spacing:10.940052pt;}
.ls6{letter-spacing:11.955200pt;}
.lsa{letter-spacing:12.098662pt;}
.ls16{letter-spacing:13.649386pt;}
.ls15{letter-spacing:13.653828pt;}
.ls21{letter-spacing:13.654719pt;}
.ls20{letter-spacing:13.655424pt;}
.ls19{letter-spacing:13.718719pt;}
.ls18{letter-spacing:13.724757pt;}
.lsf{letter-spacing:13.820211pt;}
.ls9{letter-spacing:14.138248pt;}
.ls14{letter-spacing:15.488891pt;}
.ls2{letter-spacing:17.002268pt;}
.ls12{letter-spacing:18.604052pt;}
.ls11{letter-spacing:18.608495pt;}
.ls1{letter-spacing:28.692267pt;}
.ls1b{letter-spacing:28.844052pt;}
.ls1a{letter-spacing:28.844757pt;}
.ls22{letter-spacing:29.088817pt;}
.lsb{letter-spacing:29.092233pt;}
.ls1f{letter-spacing:34.342719pt;}
.ls1e{letter-spacing:34.348757pt;}
.ls1d{letter-spacing:37.116052pt;}
.ls1c{letter-spacing:37.116757pt;}
.ws8c{word-spacing:-49.150218pt;}
.ws91{word-spacing:-35.521290pt;}
.ws8a{word-spacing:-33.671610pt;}
.ws89{word-spacing:-33.656279pt;}
.ws2{word-spacing:-14.346133pt;}
.ws11{word-spacing:-11.955200pt;}
.ws105{word-spacing:-10.909200pt;}
.ws25{word-spacing:-9.962800pt;}
.wse6{word-spacing:-4.112589pt;}
.wsc1{word-spacing:-3.825664pt;}
.wsee{word-spacing:-3.777843pt;}
.ws7d{word-spacing:-3.730022pt;}
.ws4f{word-spacing:-3.634381pt;}
.wsc7{word-spacing:-3.586560pt;}
.wscd{word-spacing:-3.538739pt;}
.wsef{word-spacing:-3.443098pt;}
.wsed{word-spacing:-3.395277pt;}
.ws24{word-spacing:-3.307650pt;}
.ws7c{word-spacing:-3.299635pt;}
.ws82{word-spacing:-3.251814pt;}
.ws9d{word-spacing:-3.203994pt;}
.wscc{word-spacing:-3.108352pt;}
.ws78{word-spacing:-3.060531pt;}
.wsa5{word-spacing:-3.012710pt;}
.ws42{word-spacing:-2.869248pt;}
.wsbe{word-spacing:-2.821427pt;}
.ws6b{word-spacing:-2.773606pt;}
.ws6e{word-spacing:-2.725786pt;}
.wsd9{word-spacing:-2.677965pt;}
.ws3b{word-spacing:-2.630144pt;}
.ws8b{word-spacing:-2.486682pt;}
.ws8d{word-spacing:-2.438861pt;}
.ws30{word-spacing:-2.391072pt;}
.ws5c{word-spacing:-2.391040pt;}
.ws32{word-spacing:-2.351221pt;}
.ws21{word-spacing:-2.343219pt;}
.wsb3{word-spacing:-2.199757pt;}
.wsd5{word-spacing:-2.151936pt;}
.ws18{word-spacing:-1.960653pt;}
.ws77{word-spacing:-1.817190pt;}
.ws15{word-spacing:-1.769370pt;}
.wsc2{word-spacing:-1.721549pt;}
.wse0{word-spacing:-1.673728pt;}
.wse{word-spacing:-1.625907pt;}
.ws9f{word-spacing:-1.578086pt;}
.ws8f{word-spacing:-1.530266pt;}
.ws6a{word-spacing:-1.482445pt;}
.ws83{word-spacing:-1.386803pt;}
.ws6d{word-spacing:-1.309104pt;}
.ws70{word-spacing:-1.291162pt;}
.ws62{word-spacing:-1.195520pt;}
.wsec{word-spacing:-1.147699pt;}
.ws84{word-spacing:-1.099878pt;}
.wsa2{word-spacing:-1.052058pt;}
.ws31{word-spacing:-1.006071pt;}
.ws5b{word-spacing:-1.004237pt;}
.ws111{word-spacing:-1.003646pt;}
.ws60{word-spacing:-0.956416pt;}
.wsd0{word-spacing:-0.908595pt;}
.wse7{word-spacing:-0.862199pt;}
.ws5a{word-spacing:-0.860774pt;}
.ws53{word-spacing:-0.812954pt;}
.ws6{word-spacing:-0.757173pt;}
.ws63{word-spacing:-0.717312pt;}
.ws5d{word-spacing:-0.669491pt;}
.ws54{word-spacing:-0.621670pt;}
.ws88{word-spacing:-0.573850pt;}
.ws39{word-spacing:-0.526029pt;}
.wsc8{word-spacing:-0.478208pt;}
.wsc5{word-spacing:-0.430387pt;}
.ws93{word-spacing:-0.382566pt;}
.wsb9{word-spacing:-0.349094pt;}
.ws4c{word-spacing:-0.334746pt;}
.ws23{word-spacing:-0.286925pt;}
.ws12{word-spacing:-0.239104pt;}
.ws99{word-spacing:-0.218184pt;}
.wsf{word-spacing:-0.191283pt;}
.wsb0{word-spacing:-0.163612pt;}
.ws10{word-spacing:-0.158566pt;}
.ws2e{word-spacing:-0.143462pt;}
.ws109{word-spacing:-0.130910pt;}
.wsa{word-spacing:-0.119554pt;}
.ws19{word-spacing:-0.095642pt;}
.ws10b{word-spacing:-0.087274pt;}
.wsb{word-spacing:-0.079702pt;}
.wseb{word-spacing:-0.068862pt;}
.ws103{word-spacing:-0.057385pt;}
.wsc{word-spacing:-0.047821pt;}
.wsba{word-spacing:-0.043637pt;}
.wsf0{word-spacing:-0.040648pt;}
.ws5{word-spacing:-0.039851pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.039851pt;}
.wsbb{word-spacing:0.043637pt;}
.ws27{word-spacing:0.047821pt;}
.ws7{word-spacing:0.079702pt;}
.ws108{word-spacing:0.087274pt;}
.ws28{word-spacing:0.095642pt;}
.ws90{word-spacing:0.097698pt;}
.wsbc{word-spacing:0.130910pt;}
.ws2b{word-spacing:0.143462pt;}
.wsc9{word-spacing:0.184644pt;}
.ws2a{word-spacing:0.191283pt;}
.ws4{word-spacing:0.199256pt;}
.ws3a{word-spacing:0.239104pt;}
.ws107{word-spacing:0.261821pt;}
.ws1e{word-spacing:0.286925pt;}
.ws17{word-spacing:0.334746pt;}
.ws38{word-spacing:0.382566pt;}
.wsd7{word-spacing:0.430387pt;}
.wsd3{word-spacing:0.478208pt;}
.ws1c{word-spacing:0.526029pt;}
.wsde{word-spacing:0.573850pt;}
.wsdd{word-spacing:0.621670pt;}
.wsdf{word-spacing:0.669491pt;}
.ws50{word-spacing:0.717312pt;}
.ws65{word-spacing:0.765133pt;}
.ws79{word-spacing:0.812954pt;}
.ws22{word-spacing:0.860774pt;}
.wsa4{word-spacing:0.908595pt;}
.wsa1{word-spacing:1.004237pt;}
.ws5f{word-spacing:1.052058pt;}
.ws43{word-spacing:1.099878pt;}
.ws7f{word-spacing:1.147699pt;}
.ws8e{word-spacing:1.195520pt;}
.ws9c{word-spacing:1.243341pt;}
.ws46{word-spacing:1.291162pt;}
.wsbd{word-spacing:1.338982pt;}
.ws81{word-spacing:1.386803pt;}
.wsdc{word-spacing:1.434624pt;}
.wsd2{word-spacing:1.482445pt;}
.ws29{word-spacing:1.530266pt;}
.ws47{word-spacing:1.578086pt;}
.ws86{word-spacing:1.625907pt;}
.ws3e{word-spacing:1.673728pt;}
.ws34{word-spacing:1.687740pt;}
.ws36{word-spacing:1.700640pt;}
.ws35{word-spacing:1.721549pt;}
.ws110{word-spacing:1.745472pt;}
.ws56{word-spacing:1.817190pt;}
.ws45{word-spacing:1.865011pt;}
.ws76{word-spacing:1.912832pt;}
.wsb2{word-spacing:2.008474pt;}
.ws48{word-spacing:2.056294pt;}
.ws3d{word-spacing:2.104115pt;}
.ws75{word-spacing:2.151936pt;}
.ws1d{word-spacing:2.199757pt;}
.ws66{word-spacing:2.247578pt;}
.ws10e{word-spacing:2.269114pt;}
.ws80{word-spacing:2.295398pt;}
.ws9{word-spacing:2.311370pt;}
.ws10a{word-spacing:2.312750pt;}
.ws9e{word-spacing:2.343219pt;}
.ws10c{word-spacing:2.400024pt;}
.wscf{word-spacing:2.408868pt;}
.ws68{word-spacing:2.438861pt;}
.wsc0{word-spacing:2.486682pt;}
.ws64{word-spacing:2.534502pt;}
.ws71{word-spacing:2.630144pt;}
.ws61{word-spacing:2.677965pt;}
.ws55{word-spacing:2.725786pt;}
.ws1b{word-spacing:2.773606pt;}
.ws9b{word-spacing:2.821427pt;}
.wse2{word-spacing:2.869248pt;}
.ws5e{word-spacing:3.012710pt;}
.wsd8{word-spacing:3.060531pt;}
.wsea{word-spacing:3.108352pt;}
.wsfa{word-spacing:3.156173pt;}
.wse3{word-spacing:3.203994pt;}
.wsa3{word-spacing:3.251814pt;}
.ws67{word-spacing:3.299635pt;}
.wse5{word-spacing:3.346097pt;}
.ws40{word-spacing:3.347456pt;}
.ws26{word-spacing:3.347501pt;}
.ws2d{word-spacing:3.395277pt;}
.wse8{word-spacing:3.490918pt;}
.wsd6{word-spacing:3.538739pt;}
.wsc6{word-spacing:3.554437pt;}
.ws20{word-spacing:3.586560pt;}
.wsda{word-spacing:3.634381pt;}
.ws96{word-spacing:3.682202pt;}
.ws10d{word-spacing:3.752765pt;}
.ws41{word-spacing:3.777843pt;}
.ws87{word-spacing:3.921306pt;}
.wsb1{word-spacing:4.016947pt;}
.wsb7{word-spacing:4.064768pt;}
.ws69{word-spacing:4.112589pt;}
.wsdb{word-spacing:4.160410pt;}
.wsfb{word-spacing:4.208230pt;}
.wscb{word-spacing:4.256051pt;}
.ws72{word-spacing:4.351693pt;}
.ws74{word-spacing:4.399514pt;}
.ws73{word-spacing:4.447334pt;}
.ws44{word-spacing:4.542976pt;}
.ws2c{word-spacing:4.590797pt;}
.wsc4{word-spacing:4.638618pt;}
.wse1{word-spacing:4.686438pt;}
.ws37{word-spacing:4.734259pt;}
.wsc3{word-spacing:4.782080pt;}
.wsf5{word-spacing:4.829901pt;}
.ws4d{word-spacing:4.925542pt;}
.ws97{word-spacing:5.021184pt;}
.ws16{word-spacing:5.116826pt;}
.wsce{word-spacing:5.212467pt;}
.ws4e{word-spacing:5.260288pt;}
.wsbf{word-spacing:5.308109pt;}
.ws13{word-spacing:5.355930pt;}
.wsb4{word-spacing:5.403750pt;}
.wsa0{word-spacing:5.451571pt;}
.ws101{word-spacing:5.595034pt;}
.wsb6{word-spacing:5.786317pt;}
.wsf3{word-spacing:5.881958pt;}
.ws3c{word-spacing:6.025421pt;}
.wsfc{word-spacing:6.121062pt;}
.wsd4{word-spacing:6.264525pt;}
.wsa6{word-spacing:6.283746pt;}
.ws95{word-spacing:6.312346pt;}
.wsfd{word-spacing:6.360166pt;}
.wsf1{word-spacing:6.407987pt;}
.ws1a{word-spacing:6.455808pt;}
.wse9{word-spacing:6.551450pt;}
.wsca{word-spacing:6.599270pt;}
.ws14{word-spacing:6.742733pt;}
.ws2f{word-spacing:7.220941pt;}
.ws7e{word-spacing:7.268762pt;}
.ws3f{word-spacing:7.364403pt;}
.ws1f{word-spacing:7.460045pt;}
.wsf9{word-spacing:7.794790pt;}
.wsf4{word-spacing:8.081715pt;}
.ws85{word-spacing:8.225178pt;}
.ws102{word-spacing:8.416461pt;}
.wsd1{word-spacing:8.607744pt;}
.wsad{word-spacing:8.638619pt;}
.ws4a{word-spacing:8.799027pt;}
.ws9a{word-spacing:9.325056pt;}
.wsa9{word-spacing:9.564160pt;}
.wsf6{word-spacing:9.803264pt;}
.wsaa{word-spacing:9.830486pt;}
.ws49{word-spacing:9.898906pt;}
.ws7b{word-spacing:10.472755pt;}
.wsb8{word-spacing:10.516469pt;}
.ws7a{word-spacing:10.520576pt;}
.ws98{word-spacing:10.647379pt;}
.wsb5{word-spacing:10.649498pt;}
.ws6c{word-spacing:10.865563pt;}
.ws58{word-spacing:10.869722pt;}
.ws92{word-spacing:11.381350pt;}
.ws104{word-spacing:11.651026pt;}
.wsf8{word-spacing:11.668275pt;}
.wsf7{word-spacing:12.003021pt;}
.wsf2{word-spacing:12.242125pt;}
.wse4{word-spacing:12.475669pt;}
.wsfe{word-spacing:13.246362pt;}
.ws59{word-spacing:13.628928pt;}
.ws100{word-spacing:13.915853pt;}
.wsff{word-spacing:14.250598pt;}
.ws6f{word-spacing:14.288749pt;}
.ws3{word-spacing:14.346133pt;}
.ws4b{word-spacing:14.872269pt;}
.ws52{word-spacing:15.254835pt;}
.ws10f{word-spacing:16.232890pt;}
.ws94{word-spacing:16.279086pt;}
.ws33{word-spacing:17.146605pt;}
.ws57{word-spacing:18.554470pt;}
.ws106{word-spacing:18.807461pt;}
.ws0{word-spacing:20.575899pt;}
.ws51{word-spacing:28.634882pt;}
.wsa7{word-spacing:28.788122pt;}
.wsa8{word-spacing:31.468419pt;}
.wsae{word-spacing:34.287514pt;}
.wsd{word-spacing:34.362071pt;}
.wsaf{word-spacing:36.977753pt;}
.wsab{word-spacing:37.061120pt;}
.wsac{word-spacing:39.740419pt;}
._1e{margin-left:-6.478012pt;}
._0{margin-left:-5.288585pt;}
._28{margin-left:-4.256051pt;}
._1{margin-left:-3.222731pt;}
._15{margin-left:-2.151936pt;}
._2{margin-left:-1.160901pt;}
._3{width:1.155685pt;}
._10{width:2.204973pt;}
._21{width:3.538739pt;}
._2e{width:4.460536pt;}
._d{width:6.814464pt;}
._23{width:8.081715pt;}
._c{width:9.962800pt;}
._4{width:11.283106pt;}
._b{width:12.672682pt;}
._6{width:13.695486pt;}
._e{width:14.639110pt;}
._8{width:15.972147pt;}
._a{width:17.311130pt;}
._5{width:19.248130pt;}
._13{width:20.562944pt;}
._1f{width:22.427955pt;}
._16{width:23.480013pt;}
._9{width:25.153741pt;}
._29{width:26.062336pt;}
._22{width:27.162214pt;}
._f{width:28.118630pt;}
._20{width:29.168486pt;}
._7{width:30.414029pt;}
._2a{width:31.466086pt;}
._12{width:32.518144pt;}
._11{width:34.430933pt;}
._26{width:36.540307pt;}
._24{width:37.874074pt;}
._2f{width:43.851674pt;}
._27{width:48.240842pt;}
._25{width:49.780666pt;}
._2c{width:56.715469pt;}
._14{width:59.058688pt;}
._1d{width:64.226978pt;}
._2b{width:69.292339pt;}
._2d{width:71.539917pt;}
._1b{width:130.561306pt;}
._19{width:139.616632pt;}
._18{width:153.885866pt;}
._1a{width:242.533334pt;}
._1c{width:262.344442pt;}
._17{width:264.526282pt;}
.fs7{font-size:23.910400pt;}
.fs3{font-size:27.895467pt;}
.fs8{font-size:31.880533pt;}
.fs4{font-size:39.851200pt;}
.fs2{font-size:40.169067pt;}
.fsb{font-size:40.648000pt;}
.fsa{font-size:42.507200pt;}
.fs9{font-size:43.636800pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:57.384533pt;}
.fs6{font-size:68.861867pt;}
.fs0{font-size:82.634133pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:216.420000pt;}
.yda{bottom:218.852000pt;}
.y4e{bottom:218.902667pt;}
.y1b7{bottom:219.556000pt;}
.y81{bottom:219.930667pt;}
.yf6{bottom:220.962667pt;}
.y32{bottom:223.593333pt;}
.y118{bottom:225.270667pt;}
.y1f5{bottom:226.465333pt;}
.y189{bottom:227.278667pt;}
.yb5{bottom:227.657333pt;}
.y1da{bottom:227.942667pt;}
.y1d1{bottom:228.609333pt;}
.y182{bottom:228.740000pt;}
.y12e{bottom:229.381333pt;}
.yd9{bottom:230.806667pt;}
.y4d{bottom:230.858667pt;}
.y31{bottom:231.373333pt;}
.y155{bottom:233.097333pt;}
.y1b6{bottom:233.901333pt;}
.y80{bottom:234.276000pt;}
.yd8{bottom:234.557333pt;}
.yf5{bottom:235.309333pt;}
.y1f4{bottom:239.556000pt;}
.y117{bottom:239.617333pt;}
.y167{bottom:240.077333pt;}
.y188{bottom:241.624000pt;}
.yb4{bottom:242.002667pt;}
.y1d9{bottom:242.288000pt;}
.y4c{bottom:242.813333pt;}
.y1d0{bottom:242.956000pt;}
.y181{bottom:243.085333pt;}
.y30{bottom:243.328000pt;}
.y12d{bottom:243.726667pt;}
.y4b{bottom:246.564000pt;}
.y154{bottom:247.444000pt;}
.y1b5{bottom:248.248000pt;}
.yf4{bottom:249.656000pt;}
.y1f3{bottom:252.646667pt;}
.y116{bottom:253.962667pt;}
.y166{bottom:254.422667pt;}
.y2f{bottom:255.402667pt;}
.y187{bottom:255.970667pt;}
.y7f{bottom:256.316000pt;}
.yb3{bottom:256.349333pt;}
.y1d8{bottom:256.634667pt;}
.y1cf{bottom:257.301333pt;}
.y180{bottom:257.432000pt;}
.y12c{bottom:258.073333pt;}
.yd7{bottom:260.238667pt;}
.y153{bottom:261.790667pt;}
.y1b4{bottom:262.593333pt;}
.yf3{bottom:264.001333pt;}
.y1f2{bottom:265.737333pt;}
.y2e{bottom:267.358667pt;}
.y115{bottom:268.309333pt;}
.y165{bottom:268.769333pt;}
.y186{bottom:270.316000pt;}
.yb2{bottom:270.694667pt;}
.y1d7{bottom:270.981333pt;}
.y1ce{bottom:271.648000pt;}
.y17f{bottom:271.778667pt;}
.y12b{bottom:272.418667pt;}
.yd6{bottom:274.584000pt;}
.y152{bottom:276.136000pt;}
.y1b3{bottom:276.940000pt;}
.yf2{bottom:278.348000pt;}
.y1f1{bottom:278.829333pt;}
.y2d{bottom:279.662667pt;}
.y114{bottom:282.654667pt;}
.y164{bottom:283.116000pt;}
.y185{bottom:284.662667pt;}
.yb1{bottom:285.041333pt;}
.y7e{bottom:285.326667pt;}
.y12a{bottom:286.765333pt;}
.y151{bottom:290.482667pt;}
.y1b2{bottom:291.286667pt;}
.y2c{bottom:291.617333pt;}
.y1f0{bottom:291.920000pt;}
.yf1{bottom:292.693333pt;}
.y4a{bottom:293.373333pt;}
.y17e{bottom:293.817333pt;}
.yd5{bottom:296.624000pt;}
.y113{bottom:297.001333pt;}
.y163{bottom:297.461333pt;}
.y1cd{bottom:297.790667pt;}
.y184{bottom:299.009333pt;}
.yb0{bottom:299.388000pt;}
.y1d6{bottom:299.673333pt;}
.y129{bottom:301.112000pt;}
.y150{bottom:304.828000pt;}
.y1ef{bottom:305.010667pt;}
.y1b1{bottom:305.632000pt;}
.yf0{bottom:307.040000pt;}
.y49{bottom:307.720000pt;}
.y112{bottom:311.348000pt;}
.y162{bottom:311.808000pt;}
.y183{bottom:313.354667pt;}
.yaf{bottom:313.733333pt;}
.y1d5{bottom:314.020000pt;}
.y128{bottom:315.457333pt;}
.y2b{bottom:316.486667pt;}
.y1ee{bottom:318.101333pt;}
.y1cc{bottom:318.449333pt;}
.y14f{bottom:319.174667pt;}
.y1b0{bottom:319.978667pt;}
.yef{bottom:321.386667pt;}
.y48{bottom:322.066667pt;}
.y7d{bottom:323.936000pt;}
.y111{bottom:325.693333pt;}
.y161{bottom:326.154667pt;}
.y17d{bottom:327.701333pt;}
.yae{bottom:328.080000pt;}
.y1d4{bottom:328.365333pt;}
.y127{bottom:329.804000pt;}
.yd4{bottom:330.506667pt;}
.y2a{bottom:330.832000pt;}
.y14e{bottom:333.521333pt;}
.y1af{bottom:334.325333pt;}
.yee{bottom:335.732000pt;}
.y7c{bottom:338.282667pt;}
.y1ed{bottom:338.885333pt;}
.y110{bottom:340.040000pt;}
.y160{bottom:340.500000pt;}
.y17c{bottom:342.048000pt;}
.yad{bottom:342.426667pt;}
.y1d3{bottom:342.712000pt;}
.y126{bottom:344.150667pt;}
.yd3{bottom:344.853333pt;}
.y29{bottom:345.178667pt;}
.y47{bottom:345.974667pt;}
.y14d{bottom:347.866667pt;}
.y1ae{bottom:348.670667pt;}
.yed{bottom:350.078667pt;}
.y7b{bottom:352.628000pt;}
.y10f{bottom:354.386667pt;}
.y1ec{bottom:356.101333pt;}
.y17b{bottom:356.393333pt;}
.yac{bottom:356.772000pt;}
.y1cb{bottom:357.057333pt;}
.y125{bottom:358.496000pt;}
.yd2{bottom:359.200000pt;}
.y28{bottom:359.524000pt;}
.y46{bottom:360.321333pt;}
.y14c{bottom:362.213333pt;}
.y15f{bottom:362.540000pt;}
.y1ad{bottom:363.017333pt;}
.yec{bottom:364.425333pt;}
.y7a{bottom:366.974667pt;}
.y10e{bottom:368.732000pt;}
.y17a{bottom:370.740000pt;}
.yab{bottom:371.118667pt;}
.y1ca{bottom:371.404000pt;}
.y124{bottom:372.842667pt;}
.yd1{bottom:373.545333pt;}
.y27{bottom:373.870667pt;}
.y45{bottom:374.668000pt;}
.y14b{bottom:376.560000pt;}
.y1ac{bottom:377.362667pt;}
.yeb{bottom:378.770667pt;}
.y79{bottom:381.321333pt;}
.y10d{bottom:383.078667pt;}
.y179{bottom:385.085333pt;}
.y1eb{bottom:385.112000pt;}
.yaa{bottom:385.464000pt;}
.y1c9{bottom:385.750667pt;}
.y123{bottom:387.188000pt;}
.yd0{bottom:387.892000pt;}
.y26{bottom:388.217333pt;}
.y14a{bottom:390.905333pt;}
.y1ab{bottom:391.709333pt;}
.yea{bottom:393.117333pt;}
.y78{bottom:395.666667pt;}
.y15e{bottom:396.422667pt;}
.y10c{bottom:397.424000pt;}
.y1d2{bottom:397.546667pt;}
.y44{bottom:398.578667pt;}
.y178{bottom:399.432000pt;}
.ya9{bottom:399.810667pt;}
.y1c8{bottom:400.096000pt;}
.y25{bottom:402.562667pt;}
.y149{bottom:405.252000pt;}
.y1aa{bottom:406.056000pt;}
.ye9{bottom:407.462667pt;}
.y122{bottom:409.228000pt;}
.y77{bottom:410.013333pt;}
.y15d{bottom:410.769333pt;}
.y10b{bottom:411.770667pt;}
.y177{bottom:413.778667pt;}
.ya8{bottom:414.157333pt;}
.y1c7{bottom:414.442667pt;}
.y24{bottom:416.909333pt;}
.y148{bottom:419.597333pt;}
.y43{bottom:420.097333pt;}
.y1a9{bottom:420.401333pt;}
.ye8{bottom:421.809333pt;}
.ycf{bottom:421.885333pt;}
.y76{bottom:424.360000pt;}
.y15c{bottom:425.116000pt;}
.y10a{bottom:426.117333pt;}
.y121{bottom:426.442667pt;}
.y176{bottom:428.124000pt;}
.ya7{bottom:428.502667pt;}
.y1c6{bottom:428.789333pt;}
.y23{bottom:431.256000pt;}
.y147{bottom:433.944000pt;}
.y42{bottom:434.444000pt;}
.y1a8{bottom:434.748000pt;}
.yce{bottom:434.976000pt;}
.ye7{bottom:436.156000pt;}
.y75{bottom:438.705333pt;}
.y15b{bottom:439.461333pt;}
.y109{bottom:440.462667pt;}
.y175{bottom:442.470667pt;}
.ya6{bottom:442.849333pt;}
.y1c5{bottom:443.134667pt;}
.y22{bottom:445.601333pt;}
.ycd{bottom:448.068000pt;}
.y146{bottom:448.290667pt;}
.y41{bottom:448.789333pt;}
.y1a7{bottom:449.094667pt;}
.ye6{bottom:450.501333pt;}
.y74{bottom:453.052000pt;}
.y15a{bottom:453.808000pt;}
.y108{bottom:454.809333pt;}
.y174{bottom:456.817333pt;}
.ya5{bottom:457.196000pt;}
.y1c4{bottom:457.481333pt;}
.y21{bottom:459.948000pt;}
.y120{bottom:460.326667pt;}
.y145{bottom:462.636000pt;}
.y40{bottom:463.136000pt;}
.y1a6{bottom:463.440000pt;}
.ye5{bottom:464.848000pt;}
.y73{bottom:467.397333pt;}
.y159{bottom:468.154667pt;}
.y107{bottom:469.156000pt;}
.y173{bottom:471.162667pt;}
.ya4{bottom:471.541333pt;}
.y1c3{bottom:471.826667pt;}
.ycc{bottom:471.894667pt;}
.y20{bottom:474.293333pt;}
.y11f{bottom:474.673333pt;}
.y144{bottom:476.982667pt;}
.y3f{bottom:477.482667pt;}
.y1a5{bottom:477.786667pt;}
.ye4{bottom:479.194667pt;}
.y72{bottom:481.744000pt;}
.y158{bottom:482.500000pt;}
.y106{bottom:483.501333pt;}
.y172{bottom:485.509333pt;}
.ya3{bottom:485.888000pt;}
.y1c2{bottom:486.173333pt;}
.y1f{bottom:488.640000pt;}
.y11e{bottom:489.020000pt;}
.ycb{bottom:491.005333pt;}
.y143{bottom:491.329333pt;}
.y3e{bottom:491.828000pt;}
.y1a4{bottom:492.132000pt;}
.ye3{bottom:493.540000pt;}
.y71{bottom:496.090667pt;}
.y157{bottom:496.846667pt;}
.y105{bottom:497.848000pt;}
.y171{bottom:499.854667pt;}
.ya2{bottom:500.233333pt;}
.y1c1{bottom:500.520000pt;}
.y1e{bottom:502.986667pt;}
.y11d{bottom:503.365333pt;}
.yca{bottom:504.096000pt;}
.y1a3{bottom:506.478667pt;}
.y3d{bottom:507.609333pt;}
.ye2{bottom:507.886667pt;}
.y70{bottom:510.436000pt;}
.y104{bottom:512.193333pt;}
.y142{bottom:513.368000pt;}
.y170{bottom:514.201333pt;}
.ya1{bottom:514.580000pt;}
.y1c0{bottom:514.865333pt;}
.yc9{bottom:517.186667pt;}
.y1d{bottom:517.332000pt;}
.y11c{bottom:517.712000pt;}
.y1a2{bottom:520.825333pt;}
.y3c{bottom:521.956000pt;}
.ye1{bottom:522.232000pt;}
.y156{bottom:522.989333pt;}
.y6f{bottom:524.782667pt;}
.y103{bottom:526.540000pt;}
.y16f{bottom:528.548000pt;}
.ya0{bottom:528.926667pt;}
.y1bf{bottom:529.212000pt;}
.y1c{bottom:531.678667pt;}
.y1a1{bottom:535.170667pt;}
.yc8{bottom:536.297333pt;}
.y3b{bottom:536.301333pt;}
.ye0{bottom:536.578667pt;}
.y6e{bottom:539.129333pt;}
.y102{bottom:540.886667pt;}
.y16e{bottom:542.893333pt;}
.y9f{bottom:543.272000pt;}
.y1be{bottom:543.558667pt;}
.y11b{bottom:543.853333pt;}
.y1b{bottom:546.025333pt;}
.y141{bottom:547.252000pt;}
.yc7{bottom:549.388000pt;}
.y1a0{bottom:549.517333pt;}
.y3a{bottom:550.648000pt;}
.ydf{bottom:550.925333pt;}
.y6d{bottom:553.474667pt;}
.y101{bottom:555.232000pt;}
.y16d{bottom:557.240000pt;}
.y9e{bottom:557.618667pt;}
.y1bd{bottom:557.904000pt;}
.y1a{bottom:560.370667pt;}
.y140{bottom:561.597333pt;}
.yc6{bottom:562.478667pt;}
.y216{bottom:563.654667pt;}
.y19f{bottom:563.864000pt;}
.y39{bottom:564.993333pt;}
.yde{bottom:565.270667pt;}
.y6c{bottom:567.821333pt;}
.y16c{bottom:571.586667pt;}
.y9d{bottom:571.965333pt;}
.y1bc{bottom:572.250667pt;}
.y19{bottom:574.717333pt;}
.yc5{bottom:575.569333pt;}
.y13f{bottom:575.944000pt;}
.y215{bottom:576.745333pt;}
.y100{bottom:577.272000pt;}
.y19e{bottom:578.209333pt;}
.y38{bottom:579.340000pt;}
.ydd{bottom:579.617333pt;}
.y6b{bottom:582.166667pt;}
.y11a{bottom:582.462667pt;}
.y9c{bottom:586.310667pt;}
.y1bb{bottom:586.596000pt;}
.y18{bottom:589.062667pt;}
.y214{bottom:589.837333pt;}
.y13e{bottom:590.290667pt;}
.y19d{bottom:592.556000pt;}
.ydc{bottom:593.962667pt;}
.yc4{bottom:594.680000pt;}
.y6a{bottom:596.513333pt;}
.y119{bottom:596.809333pt;}
.y9b{bottom:600.657333pt;}
.y37{bottom:600.860000pt;}
.y1ba{bottom:600.942667pt;}
.y213{bottom:602.928000pt;}
.y17{bottom:603.409333pt;}
.y13d{bottom:604.636000pt;}
.y19c{bottom:606.901333pt;}
.ydb{bottom:608.309333pt;}
.y69{bottom:610.860000pt;}
.yff{bottom:611.156000pt;}
.y9a{bottom:615.002667pt;}
.y36{bottom:615.205333pt;}
.y1b9{bottom:615.289333pt;}
.y212{bottom:616.018667pt;}
.y16{bottom:617.756000pt;}
.y13c{bottom:618.982667pt;}
.y16b{bottom:620.637333pt;}
.y19b{bottom:621.248000pt;}
.yc3{bottom:622.656000pt;}
.y68{bottom:625.205333pt;}
.yfe{bottom:625.501333pt;}
.y211{bottom:629.109333pt;}
.y99{bottom:629.349333pt;}
.y35{bottom:629.552000pt;}
.y1ea{bottom:629.634667pt;}
.y15{bottom:632.101333pt;}
.y13b{bottom:633.329333pt;}
.y16a{bottom:633.728000pt;}
.y19a{bottom:635.594667pt;}
.yc2{bottom:637.001333pt;}
.y67{bottom:639.552000pt;}
.yfd{bottom:639.848000pt;}
.y1b8{bottom:641.430667pt;}
.y210{bottom:642.200000pt;}
.y98{bottom:643.696000pt;}
.y34{bottom:643.897333pt;}
.y1e9{bottom:643.981333pt;}
.y169{bottom:646.818667pt;}
.y13a{bottom:647.674667pt;}
.y199{bottom:649.940000pt;}
.yc1{bottom:651.348000pt;}
.y66{bottom:653.898667pt;}
.yfc{bottom:654.193333pt;}
.y20f{bottom:655.292000pt;}
.y97{bottom:658.041333pt;}
.y14{bottom:658.244000pt;}
.y1e8{bottom:658.328000pt;}
.y168{bottom:659.909333pt;}
.y139{bottom:662.021333pt;}
.y198{bottom:664.286667pt;}
.yc0{bottom:665.694667pt;}
.y65{bottom:668.244000pt;}
.y20e{bottom:668.382667pt;}
.yfb{bottom:668.540000pt;}
.y96{bottom:672.388000pt;}
.y1e7{bottom:672.673333pt;}
.y138{bottom:676.366667pt;}
.y197{bottom:678.633333pt;}
.ybf{bottom:680.040000pt;}
.y20d{bottom:681.473333pt;}
.y64{bottom:682.590667pt;}
.yfa{bottom:682.886667pt;}
.y95{bottom:686.734667pt;}
.y1e6{bottom:687.020000pt;}
.y137{bottom:690.713333pt;}
.y196{bottom:692.978667pt;}
.ybe{bottom:694.386667pt;}
.y20c{bottom:694.564000pt;}
.y63{bottom:696.936000pt;}
.yf9{bottom:697.232000pt;}
.y13{bottom:699.117333pt;}
.y94{bottom:701.080000pt;}
.y1e5{bottom:701.365333pt;}
.y136{bottom:705.060000pt;}
.y195{bottom:707.325333pt;}
.y20b{bottom:707.654667pt;}
.ybd{bottom:708.732000pt;}
.y12{bottom:711.073333pt;}
.y62{bottom:711.282667pt;}
.yf8{bottom:711.578667pt;}
.y93{bottom:715.426667pt;}
.y1e4{bottom:715.712000pt;}
.y135{bottom:719.405333pt;}
.y20a{bottom:720.746667pt;}
.y194{bottom:721.670667pt;}
.y11{bottom:723.028000pt;}
.ybc{bottom:723.078667pt;}
.y61{bottom:725.629333pt;}
.y1e3{bottom:730.058667pt;}
.y134{bottom:733.752000pt;}
.y209{bottom:733.837333pt;}
.y193{bottom:736.017333pt;}
.ybb{bottom:737.425333pt;}
.y92{bottom:739.337333pt;}
.y60{bottom:739.974667pt;}
.y10{bottom:743.268000pt;}
.y1e2{bottom:744.404000pt;}
.y208{bottom:746.928000pt;}
.y133{bottom:748.098667pt;}
.y192{bottom:750.364000pt;}
.yba{bottom:751.770667pt;}
.y5f{bottom:754.321333pt;}
.y91{bottom:755.117333pt;}
.yf{bottom:755.224000pt;}
.y1e1{bottom:758.750667pt;}
.y207{bottom:760.018667pt;}
.yf7{bottom:760.629333pt;}
.y132{bottom:762.444000pt;}
.y191{bottom:764.709333pt;}
.yb9{bottom:766.117333pt;}
.ye{bottom:767.178667pt;}
.y5e{bottom:768.668000pt;}
.y90{bottom:769.464000pt;}
.y1e0{bottom:773.097333pt;}
.y206{bottom:773.109333pt;}
.y131{bottom:776.790667pt;}
.y190{bottom:779.056000pt;}
.yd{bottom:779.134667pt;}
.yb8{bottom:780.464000pt;}
.y5d{bottom:783.013333pt;}
.y8f{bottom:785.245333pt;}
.y205{bottom:786.201333pt;}
.y1df{bottom:787.442667pt;}
.yc{bottom:791.089333pt;}
.y18f{bottom:793.402667pt;}
.yb7{bottom:794.809333pt;}
.y5c{bottom:797.360000pt;}
.y204{bottom:799.292000pt;}
.y1de{bottom:801.789333pt;}
.yb{bottom:803.044000pt;}
.y18e{bottom:807.748000pt;}
.y8e{bottom:809.156000pt;}
.y5b{bottom:811.705333pt;}
.y203{bottom:812.382667pt;}
.ya{bottom:815.000000pt;}
.y1dd{bottom:816.134667pt;}
.y18d{bottom:822.094667pt;}
.y8d{bottom:823.501333pt;}
.y202{bottom:825.473333pt;}
.y130{bottom:825.841333pt;}
.y5a{bottom:826.052000pt;}
.y9{bottom:826.954667pt;}
.y1dc{bottom:830.481333pt;}
.y18c{bottom:836.440000pt;}
.y8c{bottom:837.848000pt;}
.y201{bottom:838.564000pt;}
.y8{bottom:838.910667pt;}
.y12f{bottom:838.932000pt;}
.y59{bottom:840.398667pt;}
.y7{bottom:850.865333pt;}
.y200{bottom:851.656000pt;}
.y8b{bottom:852.194667pt;}
.y58{bottom:854.744000pt;}
.y1db{bottom:856.624000pt;}
.y18b{bottom:858.480000pt;}
.y6{bottom:862.821333pt;}
.y1ff{bottom:864.746667pt;}
.y8a{bottom:866.540000pt;}
.y57{bottom:869.090667pt;}
.y18a{bottom:875.694667pt;}
.y1fe{bottom:877.837333pt;}
.y89{bottom:880.886667pt;}
.y56{bottom:883.436000pt;}
.y1fd{bottom:890.928000pt;}
.y88{bottom:895.233333pt;}
.y55{bottom:897.782667pt;}
.y5{bottom:899.249333pt;}
.y1fc{bottom:904.020000pt;}
.y87{bottom:909.578667pt;}
.y54{bottom:912.129333pt;}
.y4{bottom:913.860000pt;}
.y1fb{bottom:917.110667pt;}
.y86{bottom:923.925333pt;}
.y53{bottom:926.474667pt;}
.yb6{bottom:929.004000pt;}
.y1fa{bottom:930.201333pt;}
.y3{bottom:938.005333pt;}
.y85{bottom:938.270667pt;}
.y52{bottom:940.821333pt;}
.y1f9{bottom:943.292000pt;}
.y84{bottom:952.617333pt;}
.y51{bottom:955.168000pt;}
.y1f8{bottom:956.382667pt;}
.y83{bottom:966.964000pt;}
.y1f7{bottom:969.474667pt;}
.y50{bottom:969.513333pt;}
.y2{bottom:971.161333pt;}
.y82{bottom:981.309333pt;}
.y1f6{bottom:982.565333pt;}
.y4f{bottom:995.656000pt;}
.y1{bottom:995.952000pt;}
.hd{height:17.598054pt;}
.hf{height:20.531063pt;}
.h4{height:22.762701pt;}
.h12{height:23.464073pt;}
.h17{height:24.579891pt;}
.h16{height:28.437317pt;}
.h6{height:29.330483pt;}
.h18{height:29.551096pt;}
.h14{height:30.458486pt;}
.h1a{height:30.545760pt;}
.h13{height:30.894854pt;}
.h19{height:32.116685pt;}
.ha{height:32.518579pt;}
.h15{height:33.474560pt;}
.h5{height:33.857126pt;}
.hc{height:34.232181pt;}
.hb{height:34.869800pt;}
.h8{height:35.196109pt;}
.h11{height:35.865600pt;}
.h9{height:39.021773pt;}
.h10{height:40.628250pt;}
.he{height:43.778739pt;}
.h7{height:48.754202pt;}
.h3{height:53.892625pt;}
.h2{height:58.504966pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:119.054667pt;}
.x8{left:123.396000pt;}
.x67{left:124.614667pt;}
.x9{left:128.956000pt;}
.x7{left:131.010667pt;}
.xa{left:134.821333pt;}
.x57{left:138.685333pt;}
.xb{left:140.381333pt;}
.x68{left:144.606667pt;}
.xc{left:146.248000pt;}
.xd{left:151.806667pt;}
.x70{left:155.418667pt;}
.x10{left:158.226667pt;}
.x2{left:174.198667pt;}
.x3d{left:176.026667pt;}
.x55{left:182.128000pt;}
.x30{left:185.832000pt;}
.x2e{left:188.172000pt;}
.x2f{left:192.542667pt;}
.x56{left:193.704000pt;}
.x45{left:237.500000pt;}
.x47{left:244.721333pt;}
.x48{left:252.470667pt;}
.x5e{left:256.512000pt;}
.x3e{left:258.408000pt;}
.x5f{left:262.070667pt;}
.xe{left:266.232000pt;}
.x1b{left:267.502667pt;}
.xf{left:271.790667pt;}
.x1c{left:273.061333pt;}
.x46{left:275.984000pt;}
.x3f{left:277.226667pt;}
.x69{left:282.534667pt;}
.x5c{left:288.614667pt;}
.x6a{left:290.702667pt;}
.x25{left:291.852000pt;}
.x3{left:300.265333pt;}
.x26{left:302.970667pt;}
.x1d{left:303.905333pt;}
.x4{left:305.824000pt;}
.x5{left:312.918667pt;}
.x1e{left:315.024000pt;}
.x6f{left:316.717333pt;}
.x6{left:318.478667pt;}
.x1f{left:321.177333pt;}
.x40{left:324.829333pt;}
.x3b{left:327.469333pt;}
.x20{left:332.294667pt;}
.x5d{left:338.918667pt;}
.x27{left:344.896000pt;}
.x5a{left:363.122667pt;}
.x21{left:369.377333pt;}
.x22{left:374.936000pt;}
.x5b{left:377.085333pt;}
.x3c{left:378.754667pt;}
.x23{left:379.742667pt;}
.x24{left:385.301333pt;}
.x63{left:401.472000pt;}
.x11{left:403.492000pt;}
.x1a{left:407.100000pt;}
.x6b{left:409.052000pt;}
.x16{left:415.448000pt;}
.x17{left:424.393333pt;}
.x59{left:426.913333pt;}
.x28{left:428.925333pt;}
.x6c{left:430.394667pt;}
.x44{left:432.472000pt;}
.x19{left:434.674667pt;}
.x61{left:438.622667pt;}
.x18{left:439.856000pt;}
.x4f{left:449.242667pt;}
.x29{left:451.290667pt;}
.x62{left:460.532000pt;}
.x42{left:482.228000pt;}
.x64{left:499.428000pt;}
.x50{left:509.537333pt;}
.x2c{left:511.157333pt;}
.x51{left:515.190667pt;}
.x37{left:517.318667pt;}
.x6e{left:519.858667pt;}
.x4c{left:521.436000pt;}
.x43{left:527.504000pt;}
.x38{left:528.437333pt;}
.x31{left:534.121333pt;}
.x65{left:535.286667pt;}
.x6d{left:542.621333pt;}
.x32{left:545.240000pt;}
.x66{left:557.706667pt;}
.x49{left:580.197333pt;}
.x4d{left:582.521333pt;}
.x52{left:586.997333pt;}
.x4a{left:589.078667pt;}
.x4e{left:591.024000pt;}
.x12{left:595.233333pt;}
.x60{left:599.690667pt;}
.x13{left:600.792000pt;}
.x14{left:606.418667pt;}
.x15{left:611.977333pt;}
.x41{left:613.160000pt;}
.x58{left:614.688000pt;}
.x35{left:622.001333pt;}
.x33{left:623.848000pt;}
.x2d{left:627.846667pt;}
.x36{left:633.120000pt;}
.x34{left:634.966667pt;}
.x39{left:641.794667pt;}
.x53{left:646.992000pt;}
.x3a{left:652.913333pt;}
.x2a{left:658.461333pt;}
.x54{left:666.621333pt;}
.x2b{left:669.580000pt;}
.x4b{left:672.617333pt;}
}




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