
    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_d79babd3af14065bba295fbd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.081543;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_507e50a071c84806e83f2b25.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_d9e720a1999b850547cdd685.woff')format("woff");}.ff3{font-family:ff3;line-height:0.951172;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_3bbf178c409d1aa3c451d161.woff')format("woff");}.ff4{font-family:ff4;line-height:0.808838;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_af9699fa498fba4728b5b099.woff')format("woff");}.ff5{font-family:ff5;line-height:0.809082;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_42c7fad821c956fffc5de732.woff')format("woff");}.ff6{font-family:ff6;line-height:0.875488;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_a7cc0940d80754678195676a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_abf377c556175fab2ec399cf.woff')format("woff");}.ff8{font-family:ff8;line-height:1.091797;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_ebd7622f8a7349076eb18a56.woff')format("woff");}.ff9{font-family:ff9;line-height:0.951172;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_13ff8bedf1bcfdfa6ddc87e3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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_65ab9235498c5ac73a8a8587.woff')format("woff");}.ffb{font-family:ffb;line-height:1.016113;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_1a38f89d454c6a5b29961296.woff')format("woff");}.ffc{font-family:ffc;line-height:0.764566;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_0e7ea131bb978981ff9dce4c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.728027;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_c5ba8ef02af8e58854d80614.woff')format("woff");}.ffe{font-family:ffe;line-height:0.808838;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_4e42e504f1662f6065d2b00f.woff')format("woff");}.fff{font-family:fff;line-height:0.734375;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_499e0c4566016b105cad154d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.683105;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_c63912cfa3042a339add4518.woff')format("woff");}.ff11{font-family:ff11;line-height:0.760742;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_d1617ad90ded18c0cbe24cf6.woff')format("woff");}.ff12{font-family:ff12;line-height:0.682617;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_5a673c2ee210e907f4b1bd58.woff')format("woff");}.ff13{font-family:ff13;line-height:0.895996;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_651df35d5f0315eb73e7f0a4.woff')format("woff");}.ff14{font-family:ff14;line-height:0.760742;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:ff15;src:url('chunks/assets/font_694a443c3a5662980c1436db.woff')format("woff");}.ff15{font-family:ff15;line-height:1.091797;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;}
.m1c{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,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);}
.md{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);}
.mc{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);}
.mb{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.386250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.648750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648750,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-78.000000px;}
.v7{vertical-align:-37.800000px;}
.vd{vertical-align:-23.400000px;}
.v6{vertical-align:-12.600000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.800000px;}
.v9{vertical-align:4.200000px;}
.v2{vertical-align:6.000000px;}
.v8{vertical-align:8.400000px;}
.vf{vertical-align:9.600000px;}
.va{vertical-align:12.000000px;}
.v3{vertical-align:22.800000px;}
.vb{vertical-align:34.200000px;}
.ve{vertical-align:39.000000px;}
.vc{vertical-align:46.200000px;}
.v4{vertical-align:57.600000px;}
.ls1d{letter-spacing:-18.000000px;}
.ls1a{letter-spacing:-15.000000px;}
.ls3a{letter-spacing:-12.000000px;}
.ls19{letter-spacing:-6.000000px;}
.ls17{letter-spacing:-3.000000px;}
.ls15{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.393000px;}
.ls9{letter-spacing:0.600000px;}
.ls26{letter-spacing:0.795000px;}
.ls2a{letter-spacing:1.200000px;}
.lsb{letter-spacing:1.386000px;}
.lsa{letter-spacing:2.100000px;}
.ls11{letter-spacing:2.400000px;}
.ls0{letter-spacing:3.000000px;}
.ls2d{letter-spacing:3.186000px;}
.lsd{letter-spacing:3.600000px;}
.lsc{letter-spacing:4.200000px;}
.ls2b{letter-spacing:4.386000px;}
.ls32{letter-spacing:4.800000px;}
.ls35{letter-spacing:5.400000px;}
.ls10{letter-spacing:5.586000px;}
.ls1c{letter-spacing:6.000000px;}
.ls33{letter-spacing:6.600000px;}
.ls1e{letter-spacing:7.200000px;}
.lsf{letter-spacing:7.872000px;}
.ls14{letter-spacing:9.000000px;}
.ls31{letter-spacing:12.000000px;}
.ls20{letter-spacing:12.600000px;}
.ls36{letter-spacing:12.714000px;}
.ls1f{letter-spacing:13.596000px;}
.ls3{letter-spacing:13.800000px;}
.ls8{letter-spacing:14.514000px;}
.ls7{letter-spacing:15.402000px;}
.ls2c{letter-spacing:19.200000px;}
.ls12{letter-spacing:20.130000px;}
.ls27{letter-spacing:27.795000px;}
.ls38{letter-spacing:33.000000px;}
.ls5{letter-spacing:33.795000px;}
.ls24{letter-spacing:40.320000px;}
.ls16{letter-spacing:48.000000px;}
.ls2e{letter-spacing:48.600000px;}
.ls2f{letter-spacing:51.000000px;}
.ls6{letter-spacing:51.195000px;}
.ls30{letter-spacing:51.600000px;}
.ls39{letter-spacing:60.000000px;}
.ls22{letter-spacing:69.120000px;}
.ls29{letter-spacing:81.000000px;}
.ls37{letter-spacing:138.360000px;}
.ls21{letter-spacing:141.000000px;}
.ls1b{letter-spacing:150.000000px;}
.ls13{letter-spacing:153.000000px;}
.ls34{letter-spacing:157.800000px;}
.ls18{letter-spacing:162.000000px;}
.ls1{letter-spacing:245.400000px;}
.ls23{letter-spacing:264.120000px;}
.ls28{letter-spacing:333.000000px;}
.ls2{letter-spacing:431.400000px;}
.lse{letter-spacing:502.200000px;}
.ls4{letter-spacing:1812.000000px;}
.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;}
}
.ws7{word-spacing:-178.320000px;}
.ws11{word-spacing:-164.340000px;}
.ws2b{word-spacing:-135.408000px;}
.ws14{word-spacing:-89.676000px;}
.ws4{word-spacing:-68.340000px;}
.ws22{word-spacing:-41.703000px;}
.ws19{word-spacing:-36.720000px;}
.ws32{word-spacing:-31.464000px;}
.ws28{word-spacing:-30.000000px;}
.ws30{word-spacing:-28.800000px;}
.ws0{word-spacing:-28.578000px;}
.ws10{word-spacing:-28.392000px;}
.ws2f{word-spacing:-27.600000px;}
.ws1b{word-spacing:-24.255000px;}
.ws18{word-spacing:-24.000000px;}
.ws1{word-spacing:-22.200000px;}
.ws15{word-spacing:-21.360000px;}
.ws12{word-spacing:-21.300000px;}
.wsb{word-spacing:-21.120000px;}
.ws5{word-spacing:-18.000000px;}
.ws34{word-spacing:-16.200000px;}
.ws23{word-spacing:-15.789000px;}
.ws2d{word-spacing:-15.600000px;}
.ws2a{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.904000px;}
.ws1f{word-spacing:-14.868000px;}
.wsf{word-spacing:-14.340000px;}
.wse{word-spacing:-13.758000px;}
.ws1e{word-spacing:-13.200000px;}
.ws17{word-spacing:-12.870000px;}
.ws21{word-spacing:-12.480000px;}
.wsa{word-spacing:-12.405000px;}
.ws26{word-spacing:-12.300000px;}
.ws35{word-spacing:-12.156000px;}
.ws20{word-spacing:-11.700000px;}
.ws2e{word-spacing:-11.400000px;}
.ws24{word-spacing:-11.280000px;}
.ws8{word-spacing:-10.944000px;}
.ws2{word-spacing:-10.764000px;}
.ws3{word-spacing:-10.500000px;}
.ws16{word-spacing:-10.320000px;}
.ws1c{word-spacing:-9.480000px;}
.ws1a{word-spacing:-7.890000px;}
.ws2c{word-spacing:-7.200000px;}
.ws29{word-spacing:-6.576000px;}
.ws9{word-spacing:-6.480000px;}
.wsc{word-spacing:-2.400000px;}
.ws33{word-spacing:-1.938000px;}
.ws1d{word-spacing:0.000000px;}
.ws25{word-spacing:1.836000px;}
.ws27{word-spacing:19.002000px;}
.ws31{word-spacing:28.200000px;}
.ws13{word-spacing:41.298000px;}
.wsd{word-spacing:80.700000px;}
._32{margin-left:-184.002000px;}
._af{margin-left:-168.672000px;}
._35{margin-left:-167.556000px;}
._31{margin-left:-163.635000px;}
._5f{margin-left:-160.080000px;}
._33{margin-left:-155.568000px;}
._60{margin-left:-139.560000px;}
._95{margin-left:-66.054000px;}
._76{margin-left:-63.630000px;}
._c8{margin-left:-52.650000px;}
._81{margin-left:-46.137000px;}
._c9{margin-left:-41.943000px;}
._75{margin-left:-37.254000px;}
._c7{margin-left:-35.910000px;}
._c6{margin-left:-34.284000px;}
._77{margin-left:-32.760000px;}
._18{margin-left:-30.852000px;}
._8{margin-left:-28.500000px;}
._9{margin-left:-27.300000px;}
._9a{margin-left:-26.235000px;}
._16{margin-left:-24.996000px;}
._17{margin-left:-23.400000px;}
._15{margin-left:-21.900000px;}
._b{margin-left:-20.100000px;}
._19{margin-left:-18.180000px;}
._36{margin-left:-16.986000px;}
._e{margin-left:-15.828000px;}
._a{margin-left:-14.748000px;}
._34{margin-left:-13.602000px;}
._3{margin-left:-12.552000px;}
._d{margin-left:-11.304000px;}
._4{margin-left:-10.200000px;}
._24{margin-left:-9.156000px;}
._25{margin-left:-8.100000px;}
._7{margin-left:-6.600000px;}
._11{margin-left:-5.040000px;}
._2e{margin-left:-4.020000px;}
._1{margin-left:-3.000000px;}
._0{margin-left:-1.800000px;}
._c{width:1.950000px;}
._13{width:3.819000px;}
._37{width:4.839000px;}
._6{width:5.850000px;}
._1b{width:7.176000px;}
._5{width:9.126000px;}
._26{width:10.140000px;}
._23{width:11.505000px;}
._1e{width:12.795000px;}
._22{width:14.781000px;}
._1a{width:16.470000px;}
._12{width:18.060000px;}
._10{width:19.488000px;}
._2a{width:20.850000px;}
._1c{width:22.485000px;}
._1f{width:23.580000px;}
._61{width:24.588000px;}
._2{width:25.800000px;}
._3e{width:27.057000px;}
._27{width:28.098000px;}
._6e{width:29.148000px;}
._f{width:30.150000px;}
._30{width:31.455000px;}
._28{width:33.000000px;}
._20{width:34.365000px;}
._2b{width:35.478000px;}
._3c{width:37.053000px;}
._4c{width:38.961000px;}
._71{width:41.064000px;}
._29{width:42.300000px;}
._54{width:44.700000px;}
._ca{width:46.659000px;}
._67{width:47.925000px;}
._1d{width:48.942000px;}
._48{width:50.379000px;}
._5d{width:51.849000px;}
._47{width:54.540000px;}
._5c{width:56.469000px;}
._5e{width:59.325000px;}
._42{width:60.411000px;}
._41{width:61.989000px;}
._3f{width:63.540000px;}
._3d{width:65.445000px;}
._40{width:66.492000px;}
._56{width:67.500000px;}
._68{width:69.576000px;}
._2d{width:70.911000px;}
._3b{width:73.419000px;}
._5b{width:75.531000px;}
._a9{width:76.968000px;}
._39{width:78.081000px;}
._2c{width:79.317000px;}
._a4{width:80.457000px;}
._70{width:82.554000px;}
._6c{width:83.865000px;}
._63{width:86.580000px;}
._4d{width:88.548000px;}
._38{width:90.540000px;}
._45{width:92.361000px;}
._6d{width:94.182000px;}
._a2{width:102.756000px;}
._4e{width:106.935000px;}
._88{width:107.979000px;}
._43{width:109.392000px;}
._a3{width:112.680000px;}
._72{width:118.170000px;}
._74{width:123.648000px;}
._5a{width:125.424000px;}
._ac{width:127.332000px;}
._a6{width:130.137000px;}
._21{width:132.345000px;}
._4b{width:135.234000px;}
._49{width:137.100000px;}
._59{width:140.355000px;}
._84{width:142.914000px;}
._82{width:147.786000px;}
._7f{width:150.105000px;}
._a0{width:151.800000px;}
._53{width:157.650000px;}
._51{width:159.867000px;}
._97{width:162.267000px;}
._c3{width:163.419000px;}
._ab{width:165.612000px;}
._7b{width:168.213000px;}
._ba{width:172.164000px;}
._b9{width:176.400000px;}
._9c{width:178.500000px;}
._ad{width:179.505000px;}
._52{width:183.300000px;}
._a5{width:186.195000px;}
._c0{width:189.387000px;}
._4a{width:193.770000px;}
._ae{width:196.488000px;}
._cb{width:199.956000px;}
._8d{width:201.780000px;}
._99{width:203.709000px;}
._cc{width:206.214000px;}
._3a{width:207.876000px;}
._85{width:212.205000px;}
._b6{width:225.516000px;}
._ce{width:227.163000px;}
._80{width:230.208000px;}
._c2{width:231.918000px;}
._44{width:233.718000px;}
._4f{width:237.417000px;}
._65{width:240.246000px;}
._58{width:243.660000px;}
._bf{width:246.000000px;}
._cd{width:252.774000px;}
._b4{width:259.671000px;}
._46{width:261.756000px;}
._83{width:269.292000px;}
._bd{width:275.982000px;}
._90{width:284.397000px;}
._9e{width:292.203000px;}
._96{width:294.645000px;}
._57{width:307.998000px;}
._c1{width:311.652000px;}
._aa{width:317.016000px;}
._93{width:319.002000px;}
._b2{width:322.233000px;}
._7e{width:331.587000px;}
._8f{width:334.143000px;}
._79{width:345.372000px;}
._a1{width:353.649000px;}
._91{width:355.749000px;}
._7c{width:362.988000px;}
._7a{width:373.131000px;}
._9d{width:404.820000px;}
._8b{width:421.956000px;}
._2f{width:442.110000px;}
._9f{width:466.929000px;}
._8e{width:486.147000px;}
._be{width:503.139000px;}
._6b{width:559.380000px;}
._b7{width:561.924000px;}
._bc{width:573.954000px;}
._89{width:593.148000px;}
._bb{width:601.434000px;}
._b5{width:617.016000px;}
._92{width:623.205000px;}
._7d{width:645.006000px;}
._8c{width:652.530000px;}
._6a{width:669.702000px;}
._69{width:683.646000px;}
._9b{width:751.143000px;}
._50{width:790.434000px;}
._55{width:793.200000px;}
._94{width:797.622000px;}
._b8{width:804.600000px;}
._14{width:888.594000px;}
._b1{width:1003.296000px;}
._87{width:1064.682000px;}
._86{width:1095.690000px;}
._8a{width:1202.733000px;}
._c4{width:1250.805000px;}
._62{width:1303.989000px;}
._64{width:1340.400000px;}
._73{width:1397.802000px;}
._c5{width:1399.782000px;}
._66{width:1488.588000px;}
._6f{width:1646.805000px;}
._a8{width:1656.693000px;}
._98{width:1689.153000px;}
._b3{width:1990.584000px;}
._b0{width:2012.274000px;}
._a7{width:2774.700000px;}
._78{width:3171.306000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:24.000000px;}
.fs17{font-size:27.000000px;}
.fs12{font-size:28.800000px;}
.fs15{font-size:36.000000px;}
.fs2{font-size:39.000000px;}
.fs16{font-size:40.800000px;}
.fs11{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs14{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs13{font-size:93.000000px;}
.fse{font-size:108.000000px;}
.fs10{font-size:117.000000px;}
.fs5{font-size:135.000000px;}
.fs4{font-size:138.000000px;}
.fsf{font-size:147.000000px;}
.fsc{font-size:192.000000px;}
.fs3{font-size:201.000000px;}
.y0{bottom:0.000000px;}
.y1a2{bottom:0.315000px;}
.yff{bottom:50.715000px;}
.yfe{bottom:57.615000px;}
.yfd{bottom:135.315000px;}
.yfc{bottom:142.965000px;}
.yfb{bottom:179.265000px;}
.yfa{bottom:186.765000px;}
.yf9{bottom:222.465000px;}
.yf8{bottom:229.665000px;}
.yf7{bottom:310.365000px;}
.yf6{bottom:316.815000px;}
.yf5{bottom:351.315000px;}
.yf4{bottom:359.565000px;}
.yf0{bottom:436.965000px;}
.yef{bottom:454.365000px;}
.y181{bottom:456.465000px;}
.yf3{bottom:461.115000px;}
.y180{bottom:487.065000px;}
.yf2{bottom:491.715000px;}
.y17e{bottom:498.165000px;}
.y17d{bottom:515.565000px;}
.y17f{bottom:518.715000px;}
.yf1{bottom:523.065000px;}
.yee{bottom:572.415000px;}
.y17c{bottom:576.765000px;}
.yec{bottom:577.065000px;}
.yed{bottom:579.615000px;}
.ye9{bottom:644.715000px;}
.yeb{bottom:646.215000px;}
.y1a1{bottom:667.815000px;}
.ye8{bottom:679.365000px;}
.y17b{bottom:681.165000px;}
.yea{bottom:683.565000px;}
.yc2{bottom:754.215000px;}
.y17a{bottom:754.965000px;}
.ye7{bottom:757.065000px;}
.yc1{bottom:774.765000px;}
.y179{bottom:777.165000px;}
.y1a0{bottom:781.515000px;}
.ye6{bottom:781.965000px;}
.yc0{bottom:794.115000px;}
.y178{bottom:799.965000px;}
.ye5{bottom:804.615000px;}
.ybf{bottom:814.665000px;}
.y177{bottom:815.715000px;}
.ye4{bottom:819.765000px;}
.ybe{bottom:835.215000px;}
.y176{bottom:835.965000px;}
.ye3{bottom:839.865000px;}
.ybd{bottom:854.565000px;}
.y175{bottom:855.315000px;}
.ye2{bottom:860.415000px;}
.ybc{bottom:874.065000px;}
.y174{bottom:874.815000px;}
.ye1{bottom:881.565000px;}
.ybb{bottom:892.815000px;}
.y173{bottom:893.865000px;}
.y19f{bottom:899.265000px;}
.y172{bottom:902.265000px;}
.ye0{bottom:903.915000px;}
.yba{bottom:911.115000px;}
.y171{bottom:914.415000px;}
.y16a{bottom:920.865000px;}
.ydf{bottom:921.615000px;}
.yb9{bottom:930.915000px;}
.y170{bottom:936.015000px;}
.y19e{bottom:936.315000px;}
.y194{bottom:938.565000px;}
.y169{bottom:940.365000px;}
.yde{bottom:945.765000px;}
.y19d{bottom:949.665000px;}
.yb8{bottom:951.465000px;}
.y195{bottom:957.615000px;}
.y16f{bottom:957.915000px;}
.ydd{bottom:962.565000px;}
.y19c{bottom:967.965000px;}
.yb7{bottom:972.015000px;}
.y16e{bottom:977.715000px;}
.y193{bottom:981.315000px;}
.ydc{bottom:983.115000px;}
.y190{bottom:987.165000px;}
.y19b{bottom:988.515000px;}
.yb6{bottom:992.565000px;}
.y16d{bottom:998.565000px;}
.y192{bottom:1002.165000px;}
.ydb{bottom:1003.965000px;}
.y19a{bottom:1011.915000px;}
.yb5{bottom:1013.715000px;}
.y16c{bottom:1018.815000px;}
.yda{bottom:1024.515000px;}
.y199{bottom:1031.415000px;}
.yb4{bottom:1033.965000px;}
.y16b{bottom:1035.765000px;}
.y168{bottom:1043.265000px;}
.yd9{bottom:1044.765000px;}
.y198{bottom:1049.715000px;}
.yb3{bottom:1054.365000px;}
.y166{bottom:1059.765000px;}
.y191{bottom:1061.265000px;}
.yd8{bottom:1066.665000px;}
.y197{bottom:1072.365000px;}
.yb2{bottom:1075.365000px;}
.y167{bottom:1076.715000px;}
.y165{bottom:1082.865000px;}
.yd7{bottom:1086.465000px;}
.y196{bottom:1093.365000px;}
.yb1{bottom:1095.765000px;}
.y164{bottom:1101.615000px;}
.yd6{bottom:1107.315000px;}
.yb0{bottom:1116.015000px;}
.y15f{bottom:1117.815000px;}
.yd5{bottom:1127.115000px;}
.y163{bottom:1131.465000px;}
.yaf{bottom:1136.565000px;}
.y15e{bottom:1137.915000px;}
.yd4{bottom:1147.365000px;}
.y162{bottom:1152.315000px;}
.yae{bottom:1156.965000px;}
.y15d{bottom:1158.465000px;}
.yd3{bottom:1167.465000px;}
.yad{bottom:1177.515000px;}
.y15c{bottom:1179.015000px;}
.yd2{bottom:1188.315000px;}
.yac{bottom:1198.065000px;}
.y15b{bottom:1199.565000px;}
.yd1{bottom:1210.365000px;}
.yab{bottom:1218.615000px;}
.y15a{bottom:1220.415000px;}
.yd0{bottom:1230.165000px;}
.y161{bottom:1234.815000px;}
.yaa{bottom:1239.165000px;}
.y159{bottom:1240.965000px;}
.y160{bottom:1251.765000px;}
.ycf{bottom:1253.565000px;}
.ya9{bottom:1266.465000px;}
.y158{bottom:1267.515000px;}
.y152{bottom:1274.715000px;}
.yce{bottom:1279.065000px;}
.ya8{bottom:1287.015000px;}
.y157{bottom:1288.365000px;}
.y18f{bottom:1288.815000px;}
.y151{bottom:1293.765000px;}
.ycd{bottom:1296.315000px;}
.ya7{bottom:1307.565000px;}
.ya1{bottom:1307.865000px;}
.y156{bottom:1308.915000px;}
.ycc{bottom:1318.365000px;}
.y150{bottom:1318.965000px;}
.ya6{bottom:1327.965000px;}
.y14f{bottom:1332.015000px;}
.ycb{bottom:1340.265000px;}
.ya5{bottom:1348.515000px;}
.ya0{bottom:1348.965000px;}
.yc3{bottom:1349.265000px;}
.y14e{bottom:1353.615000px;}
.yca{bottom:1357.965000px;}
.ya4{bottom:1369.065000px;}
.y155{bottom:1372.365000px;}
.y14d{bottom:1373.715000px;}
.yc9{bottom:1378.365000px;}
.ya3{bottom:1389.615000px;}
.y14c{bottom:1391.415000px;}
.y154{bottom:1394.565000px;}
.yc8{bottom:1398.915000px;}
.ya2{bottom:1410.465000px;}
.y14b{bottom:1412.565000px;}
.y153{bottom:1414.365000px;}
.yc7{bottom:1419.165000px;}
.y9f{bottom:1430.565000px;}
.y14a{bottom:1432.815000px;}
.y145{bottom:1434.915000px;}
.yc6{bottom:1437.165000px;}
.y6b{bottom:1451.115000px;}
.y18e{bottom:1452.165000px;}
.y149{bottom:1452.915000px;}
.y146{bottom:1456.965000px;}
.yc5{bottom:1458.315000px;}
.y6a{bottom:1471.665000px;}
.y148{bottom:1473.465000px;}
.y69{bottom:1492.215000px;}
.y147{bottom:1494.015000px;}
.yc4{bottom:1505.115000px;}
.y68{bottom:1512.765000px;}
.y67{bottom:1533.615000px;}
.y9e{bottom:1546.515000px;}
.y66{bottom:1553.715000px;}
.y9d{bottom:1569.165000px;}
.y144{bottom:1571.415000px;}
.y65{bottom:1574.265000px;}
.y140{bottom:1577.565000px;}
.y9c{bottom:1578.165000px;}
.y143{bottom:1580.415000px;}
.y64{bottom:1594.815000px;}
.y13f{bottom:1596.615000px;}
.y142{bottom:1600.965000px;}
.y63{bottom:1615.665000px;}
.y13e{bottom:1617.165000px;}
.y18d{bottom:1618.215000px;}
.y141{bottom:1622.565000px;}
.y9b{bottom:1624.965000px;}
.y62{bottom:1636.515000px;}
.y61{bottom:1657.065000px;}
.y9a{bottom:1662.765000px;}
.y60{bottom:1677.615000px;}
.y99{bottom:1690.965000px;}
.y5f{bottom:1698.465000px;}
.y18c{bottom:1703.565000px;}
.y98{bottom:1708.965000px;}
.y97{bottom:1713.615000px;}
.y7f{bottom:1718.265000px;}
.y5e{bottom:1719.015000px;}
.y96{bottom:1729.815000px;}
.y7e{bottom:1734.465000px;}
.y5d{bottom:1739.565000px;}
.y7d{bottom:1740.165000px;}
.y95{bottom:1746.765000px;}
.y7c{bottom:1759.665000px;}
.y5c{bottom:1760.415000px;}
.y94{bottom:1779.165000px;}
.y7b{bottom:1780.215000px;}
.y5b{bottom:1780.515000px;}
.y5a{bottom:1800.765000px;}
.y13c{bottom:1802.565000px;}
.y93{bottom:1804.365000px;}
.y13b{bottom:1808.265000px;}
.y59{bottom:1819.815000px;}
.y7a{bottom:1820.115000px;}
.y91{bottom:1822.965000px;}
.y13d{bottom:1823.715000px;}
.y13a{bottom:1824.165000px;}
.y58{bottom:1840.665000px;}
.y79{bottom:1840.965000px;}
.y139{bottom:1844.265000px;}
.y90{bottom:1850.715000px;}
.y57{bottom:1861.215000px;}
.y138{bottom:1863.765000px;}
.y8f{bottom:1869.165000px;}
.y56{bottom:1881.765000px;}
.y137{bottom:1884.165000px;}
.y78{bottom:1885.365000px;}
.y8e{bottom:1891.065000px;}
.y55{bottom:1902.615000px;}
.y136{bottom:1905.765000px;}
.y77{bottom:1908.015000px;}
.y8d{bottom:1911.615000px;}
.y54{bottom:1922.715000px;}
.y75{bottom:1923.165000px;}
.y135{bottom:1926.765000px;}
.y8c{bottom:1932.465000px;}
.y53{bottom:1943.565000px;}
.y76{bottom:1947.165000px;}
.y8b{bottom:1952.565000px;}
.y74{bottom:1955.115000px;}
.y52{bottom:1964.115000px;}
.y73{bottom:1965.165000px;}
.y134{bottom:1967.715000px;}
.y8a{bottom:1973.565000px;}
.y51{bottom:1984.365000px;}
.y18b{bottom:1986.765000px;}
.y133{bottom:1987.215000px;}
.y89{bottom:1988.565000px;}
.y50{bottom:2004.765000px;}
.y92{bottom:2005.215000px;}
.y132{bottom:2007.315000px;}
.y88{bottom:2008.365000px;}
.y4f{bottom:2025.315000px;}
.y35{bottom:2026.815000px;}
.y131{bottom:2027.565000px;}
.y87{bottom:2029.665000px;}
.y4e{bottom:2045.865000px;}
.y34{bottom:2046.915000px;}
.y130{bottom:2048.415000px;}
.y86{bottom:2049.765000px;}
.y4d{bottom:2066.715000px;}
.y33{bottom:2067.465000px;}
.y85{bottom:2071.065000px;}
.y72{bottom:2077.515000px;}
.y4c{bottom:2086.965000px;}
.y84{bottom:2092.365000px;}
.y71{bottom:2097.015000px;}
.y4b{bottom:2107.065000px;}
.y12b{bottom:2113.215000px;}
.y83{bottom:2114.265000px;}
.y4a{bottom:2127.615000px;}
.y18a{bottom:2129.415000px;}
.y12a{bottom:2133.765000px;}
.y82{bottom:2135.115000px;}
.y12f{bottom:2135.865000px;}
.y189{bottom:2144.865000px;}
.y49{bottom:2148.465000px;}
.y12e{bottom:2152.065000px;}
.y129{bottom:2153.865000px;}
.y81{bottom:2155.665000px;}
.y128{bottom:2161.365000px;}
.y48{bottom:2168.565000px;}
.y12d{bottom:2171.865000px;}
.y127{bottom:2173.965000px;}
.y80{bottom:2175.465000px;}
.y47{bottom:2189.565000px;}
.y12c{bottom:2191.965000px;}
.y126{bottom:2194.515000px;}
.y46{bottom:2209.965000px;}
.y45{bottom:2230.065000px;}
.y44{bottom:2250.615000px;}
.y43{bottom:2271.165000px;}
.y42{bottom:2291.715000px;}
.y6c{bottom:2296.065000px;}
.y41{bottom:2311.965000px;}
.y40{bottom:2332.365000px;}
.y3f{bottom:2354.715000px;}
.y123{bottom:2377.065000px;}
.y125{bottom:2378.115000px;}
.y122{bottom:2381.415000px;}
.y3e{bottom:2382.465000px;}
.y124{bottom:2394.765000px;}
.y121{bottom:2399.415000px;}
.y3d{bottom:2403.315000px;}
.y120{bottom:2419.215000px;}
.y3c{bottom:2423.565000px;}
.y11f{bottom:2437.965000px;}
.y3b{bottom:2444.415000px;}
.y118{bottom:2446.515000px;}
.y3a{bottom:2464.965000px;}
.y117{bottom:2466.765000px;}
.y39{bottom:2485.365000px;}
.y116{bottom:2487.615000px;}
.y38{bottom:2505.615000px;}
.y115{bottom:2508.165000px;}
.y37{bottom:2526.165000px;}
.y114{bottom:2527.965000px;}
.y11e{bottom:2529.015000px;}
.y11d{bottom:2538.765000px;}
.y70{bottom:2541.615000px;}
.y11c{bottom:2558.565000px;}
.y6f{bottom:2561.715000px;}
.y36{bottom:2564.565000px;}
.y11b{bottom:2579.715000px;}
.y6e{bottom:2582.565000px;}
.y32{bottom:2597.715000px;}
.y11a{bottom:2600.265000px;}
.y6d{bottom:2601.315000px;}
.y31{bottom:2607.165000px;}
.y111{bottom:2607.765000px;}
.y119{bottom:2620.815000px;}
.y113{bottom:2640.165000px;}
.y30{bottom:2640.915000px;}
.y110{bottom:2644.215000px;}
.y2f{bottom:2648.865000px;}
.y1d{bottom:2649.615000px;}
.y2e{bottom:2649.915000px;}
.y112{bottom:2655.315000px;}
.y10f{bottom:2661.765000px;}
.y2d{bottom:2665.065000px;}
.y1c{bottom:2670.165000px;}
.y2c{bottom:2685.615000px;}
.y10e{bottom:2690.265000px;}
.y1b{bottom:2690.565000px;}
.y2b{bottom:2707.215000px;}
.y1a{bottom:2710.815000px;}
.y10d{bottom:2711.115000px;}
.y183{bottom:2721.615000px;}
.y2a{bottom:2727.315000px;}
.y19{bottom:2729.115000px;}
.y29{bottom:2731.365000px;}
.y28{bottom:2746.065000px;}
.y18{bottom:2749.665000px;}
.y10c{bottom:2750.715000px;}
.y188{bottom:2758.365000px;}
.y10b{bottom:2761.515000px;}
.y17{bottom:2770.515000px;}
.y27{bottom:2772.315000px;}
.y10a{bottom:2780.265000px;}
.y16{bottom:2791.065000px;}
.y109{bottom:2800.815000px;}
.y186{bottom:2809.365000px;}
.y15{bottom:2811.165000px;}
.y108{bottom:2820.915000px;}
.y26{bottom:2827.815000px;}
.y14{bottom:2831.415000px;}
.y185{bottom:2833.515000px;}
.y107{bottom:2842.215000px;}
.y25{bottom:2847.615000px;}
.y187{bottom:2848.665000px;}
.y13{bottom:2851.515000px;}
.y21{bottom:2858.715000px;}
.y106{bottom:2862.315000px;}
.y184{bottom:2868.765000px;}
.y24{bottom:2869.215000px;}
.y12{bottom:2872.065000px;}
.y105{bottom:2884.365000px;}
.y23{bottom:2889.015000px;}
.y11{bottom:2892.165000px;}
.y20{bottom:2893.965000px;}
.y1f{bottom:2902.365000px;}
.y104{bottom:2904.165000px;}
.y22{bottom:2909.565000px;}
.y10{bottom:2911.665000px;}
.y103{bottom:2921.415000px;}
.y1e{bottom:2951.265000px;}
.y102{bottom:2956.365000px;}
.yf{bottom:2989.365000px;}
.y101{bottom:3036.615000px;}
.ye{bottom:3037.665000px;}
.y9{bottom:3040.215000px;}
.y100{bottom:3069.765000px;}
.yd{bottom:3073.365000px;}
.yc{bottom:3075.765000px;}
.y8{bottom:3076.515000px;}
.yb{bottom:3122.565000px;}
.y7{bottom:3124.815000px;}
.ya{bottom:3208.365000px;}
.y182{bottom:3243.915000px;}
.y6{bottom:3251.865000px;}
.y5{bottom:3294.765000px;}
.y4{bottom:3337.965000px;}
.y3{bottom:3381.165000px;}
.y2{bottom:3467.865000px;}
.y1{bottom:3537.315000px;}
.h25{height:16.382812px;}
.h26{height:18.023438px;}
.h2e{height:19.656738px;}
.h2f{height:20.414062px;}
.h1d{height:28.335938px;}
.h3{height:29.326172px;}
.h20{height:33.172852px;}
.h22{height:33.534668px;}
.he{height:37.990723px;}
.h24{height:39.682617px;}
.hb{height:40.605469px;}
.h1f{height:43.379883px;}
.h2a{height:43.853027px;}
.h1c{height:43.989258px;}
.h28{height:44.150391px;}
.h16{height:46.083984px;}
.h21{height:46.432617px;}
.h2d{height:49.012207px;}
.h4{height:51.035156px;}
.h9{height:51.591797px;}
.h5{height:51.987305px;}
.h15{height:52.235156px;}
.hf{height:52.835156px;}
.h12{height:53.991797px;}
.h13{height:55.235156px;}
.hd{height:56.138672px;}
.h2{height:57.395508px;}
.h10{height:59.991797px;}
.h11{height:60.035156px;}
.h29{height:61.242188px;}
.h27{height:61.984863px;}
.h14{height:63.035156px;}
.h19{height:77.783203px;}
.h23{height:84.931641px;}
.h18{height:85.235156px;}
.ha{height:91.977539px;}
.h1e{height:97.976074px;}
.h7{height:99.338379px;}
.h1b{height:99.518555px;}
.h1a{height:100.467773px;}
.hc{height:108.635156px;}
.h17{height:128.812500px;}
.h6{height:133.967285px;}
.h8{height:147.707520px;}
.h0{height:3609.375000px;}
.h1{height:3609.750000px;}
.h2b{height:3611.175000px;}
.h2c{height:3611.250000px;}
.w4{width:1859.250000px;}
.w3{width:1859.400000px;}
.w2{width:1868.775000px;}
.w1{width:1869.000000px;}
.w0{width:1869.150000px;}
.x0{left:0.000000px;}
.xe7{left:132.450000px;}
.x6{left:186.900000px;}
.xe8{left:195.900000px;}
.xe0{left:205.500000px;}
.xd9{left:208.800000px;}
.xd8{left:214.500000px;}
.xda{left:216.000000px;}
.xd7{left:217.500000px;}
.xc2{left:218.550000px;}
.xd0{left:219.600000px;}
.xb8{left:220.650000px;}
.xb4{left:222.450000px;}
.xa2{left:224.250000px;}
.x67{left:225.750000px;}
.x78{left:226.800000px;}
.x84{left:229.050000px;}
.x7e{left:230.100000px;}
.x77{left:231.750000px;}
.x2c{left:233.700000px;}
.xe{left:235.050000px;}
.xf{left:236.250000px;}
.xd{left:237.300000px;}
.x29{left:238.650000px;}
.x12{left:240.150000px;}
.x11{left:241.200000px;}
.xb9{left:242.250000px;}
.xd5{left:243.750000px;}
.xa3{left:244.800000px;}
.xa1{left:245.850000px;}
.x83{left:248.850000px;}
.x52{left:255.600000px;}
.x2b{left:257.400000px;}
.x2a{left:258.900000px;}
.x28{left:259.950000px;}
.x10{left:263.550000px;}
.x79{left:269.700000px;}
.x1{left:272.550000px;}
.x9d{left:294.450000px;}
.x5{left:335.850000px;}
.xe1{left:344.850000px;}
.x82{left:358.650000px;}
.x9e{left:362.550000px;}
.x68{left:365.400000px;}
.x27{left:369.000000px;}
.xe2{left:376.200000px;}
.xcf{left:378.000000px;}
.x69{left:396.750000px;}
.x7f{left:397.800000px;}
.x25{left:406.050000px;}
.x26{left:411.450000px;}
.x9f{left:434.550000px;}
.x32{left:452.250000px;}
.x36{left:453.300000px;}
.x35{left:454.350000px;}
.xc3{left:457.500000px;}
.x37{left:464.100000px;}
.xc4{left:470.550000px;}
.xa0{left:484.500000px;}
.xc5{left:500.850000px;}
.x2d{left:502.200000px;}
.x2{left:537.150000px;}
.x4{left:538.650000px;}
.x7{left:539.700000px;}
.x9{left:540.750000px;}
.xc{left:541.800000px;}
.x17{left:543.600000px;}
.x24{left:544.650000px;}
.x33{left:547.650000px;}
.x4d{left:549.000000px;}
.x38{left:552.300000px;}
.x3{left:554.400000px;}
.x39{left:557.700000px;}
.xe9{left:560.250000px;}
.x15{left:563.400000px;}
.xa{left:564.900000px;}
.x14{left:568.050000px;}
.x16{left:569.850000px;}
.x1d{left:572.400000px;}
.x34{left:573.750000px;}
.xb{left:578.550000px;}
.x1b{left:580.950000px;}
.x3b{left:584.700000px;}
.x41{left:585.750000px;}
.xdb{left:587.100000px;}
.x4f{left:588.300000px;}
.x44{left:591.450000px;}
.x43{left:592.950000px;}
.x1c{left:597.150000px;}
.x49{left:608.850000px;}
.x51{left:612.450000px;}
.x50{left:616.350000px;}
.x75{left:627.750000px;}
.xbb{left:631.800000px;}
.x74{left:642.900000px;}
.x53{left:662.700000px;}
.xb5{left:672.150000px;}
.x6a{left:675.300000px;}
.x6b{left:677.550000px;}
.x18{left:695.850000px;}
.xb6{left:697.650000px;}
.x6c{left:704.100000px;}
.xcb{left:705.600000px;}
.x85{left:706.650000px;}
.xbc{left:709.050000px;}
.x86{left:710.700000px;}
.x2f{left:716.400000px;}
.x3a{left:718.650000px;}
.x5d{left:721.050000px;}
.x61{left:723.900000px;}
.x63{left:724.950000px;}
.x70{left:735.900000px;}
.x57{left:737.250000px;}
.x56{left:738.300000px;}
.x73{left:739.350000px;}
.x5b{left:740.550000px;}
.x60{left:741.600000px;}
.x71{left:745.950000px;}
.x62{left:747.300000px;}
.x55{left:748.350000px;}
.xc6{left:750.150000px;}
.x4b{left:756.000000px;}
.x5a{left:757.800000px;}
.x72{left:758.850000px;}
.x5e{left:760.350000px;}
.x5f{left:762.750000px;}
.x64{left:763.950000px;}
.x66{left:765.300000px;}
.x65{left:767.100000px;}
.x8d{left:769.021500px;}
.x8c{left:770.082000px;}
.xa4{left:772.200000px;}
.x5c{left:773.250000px;}
.xa5{left:777.300000px;}
.x8e{left:778.717500px;}
.xe4{left:780.450000px;}
.xc7{left:788.700000px;}
.xa6{left:808.200000px;}
.x13{left:823.350000px;}
.xba{left:836.550000px;}
.xea{left:841.950000px;}
.xc8{left:846.450000px;}
.xca{left:852.150000px;}
.x87{left:859.050000px;}
.x3f{left:860.700000px;}
.x3e{left:864.750000px;}
.x40{left:865.800000px;}
.x59{left:868.200000px;}
.xdc{left:869.700000px;}
.xa7{left:870.900000px;}
.x19{left:875.850000px;}
.x88{left:877.950000px;}
.xbd{left:897.000000px;}
.xf4{left:898.950000px;}
.x58{left:902.100000px;}
.xdd{left:904.650000px;}
.x1e{left:914.400000px;}
.x45{left:917.250000px;}
.x102{left:926.250000px;}
.xf7{left:943.200000px;}
.x7a{left:946.050000px;}
.xf6{left:947.550000px;}
.x46{left:950.700000px;}
.x47{left:957.300000px;}
.x76{left:966.300000px;}
.xe3{left:978.450000px;}
.xb7{left:983.250000px;}
.x7b{left:985.050000px;}
.x3c{left:992.250000px;}
.xf5{left:997.950000px;}
.xc0{left:1001.100000px;}
.xde{left:1011.300000px;}
.x1f{left:1046.250000px;}
.x3d{left:1047.600000px;}
.x20{left:1050.150000px;}
.x4c{left:1072.500000px;}
.x48{left:1075.200000px;}
.xa8{left:1085.700000px;}
.xf0{left:1089.000000px;}
.x101{left:1109.550000px;}
.xdf{left:1119.300000px;}
.xf8{left:1120.350000px;}
.x8f{left:1126.500000px;}
.x21{left:1147.050000px;}
.x22{left:1152.450000px;}
.x23{left:1159.200000px;}
.x90{left:1197.300000px;}
.xeb{left:1201.050000px;}
.x2e{left:1202.850000px;}
.xd1{left:1212.750000px;}
.xc9{left:1214.250000px;}
.x103{left:1224.750000px;}
.xf3{left:1226.250000px;}
.x42{left:1228.050000px;}
.x30{left:1229.850000px;}
.xec{left:1237.650000px;}
.x4e{left:1239.150000px;}
.xed{left:1243.050000px;}
.x80{left:1251.450000px;}
.xd6{left:1255.050000px;}
.x31{left:1256.850000px;}
.xf2{left:1262.250000px;}
.x81{left:1263.300000px;}
.xe6{left:1274.400000px;}
.x89{left:1275.789000px;}
.x6e{left:1289.850000px;}
.xa9{left:1302.150000px;}
.xe5{left:1309.050000px;}
.xee{left:1310.100000px;}
.xef{left:1312.650000px;}
.x8{left:1319.700000px;}
.x6d{left:1327.650000px;}
.x9b{left:1336.950000px;}
.x8a{left:1339.267500px;}
.x7c{left:1345.950000px;}
.xc1{left:1353.300000px;}
.x6f{left:1356.150000px;}
.xaa{left:1357.200000px;}
.x4a{left:1359.450000px;}
.x91{left:1363.200000px;}
.x7d{left:1364.400000px;}
.xcc{left:1366.950000px;}
.xfb{left:1376.250000px;}
.x54{left:1388.850000px;}
.xab{left:1393.200000px;}
.x8b{left:1398.201000px;}
.xac{left:1399.950000px;}
.x92{left:1406.100000px;}
.xd2{left:1411.950000px;}
.xf1{left:1413.450000px;}
.xcd{left:1416.600000px;}
.xce{left:1417.650000px;}
.xf9{left:1421.700000px;}
.xad{left:1434.300000px;}
.xae{left:1441.800000px;}
.xfc{left:1454.100000px;}
.x1a{left:1460.850000px;}
.xfd{left:1463.100000px;}
.x93{left:1479.900000px;}
.x94{left:1498.200000px;}
.xaf{left:1517.700000px;}
.xb0{left:1523.850000px;}
.xfa{left:1525.050000px;}
.xbe{left:1539.000000px;}
.xbf{left:1543.200000px;}
.xd4{left:1561.950000px;}
.xfe{left:1588.050000px;}
.x104{left:1590.450000px;}
.xff{left:1591.950000px;}
.x95{left:1593.600000px;}
.xd3{left:1595.100000px;}
.x100{left:1599.450000px;}
.x96{left:1619.250000px;}
.xb1{left:1622.100000px;}
.xb2{left:1627.950000px;}
.x97{left:1635.150000px;}
.x105{left:1640.850000px;}
.x98{left:1647.600000px;}
.x99{left:1659.450000px;}
.xb3{left:1661.700000px;}
.x9a{left:1668.600000px;}
.x9c{left:1684.050000px;}
@media print{
.v1{vertical-align:-69.333333pt;}
.v7{vertical-align:-33.600000pt;}
.vd{vertical-align:-20.800000pt;}
.v6{vertical-align:-11.200000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.600000pt;}
.v9{vertical-align:3.733333pt;}
.v2{vertical-align:5.333333pt;}
.v8{vertical-align:7.466667pt;}
.vf{vertical-align:8.533333pt;}
.va{vertical-align:10.666667pt;}
.v3{vertical-align:20.266667pt;}
.vb{vertical-align:30.400000pt;}
.ve{vertical-align:34.666667pt;}
.vc{vertical-align:41.066667pt;}
.v4{vertical-align:51.200000pt;}
.ls1d{letter-spacing:-16.000000pt;}
.ls1a{letter-spacing:-13.333333pt;}
.ls3a{letter-spacing:-10.666667pt;}
.ls19{letter-spacing:-5.333333pt;}
.ls17{letter-spacing:-2.666667pt;}
.ls15{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.349333pt;}
.ls9{letter-spacing:0.533333pt;}
.ls26{letter-spacing:0.706667pt;}
.ls2a{letter-spacing:1.066667pt;}
.lsb{letter-spacing:1.232000pt;}
.lsa{letter-spacing:1.866667pt;}
.ls11{letter-spacing:2.133333pt;}
.ls0{letter-spacing:2.666667pt;}
.ls2d{letter-spacing:2.832000pt;}
.lsd{letter-spacing:3.200000pt;}
.lsc{letter-spacing:3.733333pt;}
.ls2b{letter-spacing:3.898667pt;}
.ls32{letter-spacing:4.266667pt;}
.ls35{letter-spacing:4.800000pt;}
.ls10{letter-spacing:4.965333pt;}
.ls1c{letter-spacing:5.333333pt;}
.ls33{letter-spacing:5.866667pt;}
.ls1e{letter-spacing:6.400000pt;}
.lsf{letter-spacing:6.997333pt;}
.ls14{letter-spacing:8.000000pt;}
.ls31{letter-spacing:10.666667pt;}
.ls20{letter-spacing:11.200000pt;}
.ls36{letter-spacing:11.301333pt;}
.ls1f{letter-spacing:12.085333pt;}
.ls3{letter-spacing:12.266667pt;}
.ls8{letter-spacing:12.901333pt;}
.ls7{letter-spacing:13.690667pt;}
.ls2c{letter-spacing:17.066667pt;}
.ls12{letter-spacing:17.893333pt;}
.ls27{letter-spacing:24.706667pt;}
.ls38{letter-spacing:29.333333pt;}
.ls5{letter-spacing:30.040000pt;}
.ls24{letter-spacing:35.840000pt;}
.ls16{letter-spacing:42.666667pt;}
.ls2e{letter-spacing:43.200000pt;}
.ls2f{letter-spacing:45.333333pt;}
.ls6{letter-spacing:45.506667pt;}
.ls30{letter-spacing:45.866667pt;}
.ls39{letter-spacing:53.333333pt;}
.ls22{letter-spacing:61.440000pt;}
.ls29{letter-spacing:72.000000pt;}
.ls37{letter-spacing:122.986667pt;}
.ls21{letter-spacing:125.333333pt;}
.ls1b{letter-spacing:133.333333pt;}
.ls13{letter-spacing:136.000000pt;}
.ls34{letter-spacing:140.266667pt;}
.ls18{letter-spacing:144.000000pt;}
.ls1{letter-spacing:218.133333pt;}
.ls23{letter-spacing:234.773333pt;}
.ls28{letter-spacing:296.000000pt;}
.ls2{letter-spacing:383.466667pt;}
.lse{letter-spacing:446.400000pt;}
.ls4{letter-spacing:1610.666667pt;}
.ws7{word-spacing:-158.506667pt;}
.ws11{word-spacing:-146.080000pt;}
.ws2b{word-spacing:-120.362667pt;}
.ws14{word-spacing:-79.712000pt;}
.ws4{word-spacing:-60.746667pt;}
.ws22{word-spacing:-37.069333pt;}
.ws19{word-spacing:-32.640000pt;}
.ws32{word-spacing:-27.968000pt;}
.ws28{word-spacing:-26.666667pt;}
.ws30{word-spacing:-25.600000pt;}
.ws0{word-spacing:-25.402667pt;}
.ws10{word-spacing:-25.237333pt;}
.ws2f{word-spacing:-24.533333pt;}
.ws1b{word-spacing:-21.560000pt;}
.ws18{word-spacing:-21.333333pt;}
.ws1{word-spacing:-19.733333pt;}
.ws15{word-spacing:-18.986667pt;}
.ws12{word-spacing:-18.933333pt;}
.wsb{word-spacing:-18.773333pt;}
.ws5{word-spacing:-16.000000pt;}
.ws34{word-spacing:-14.400000pt;}
.ws23{word-spacing:-14.034667pt;}
.ws2d{word-spacing:-13.866667pt;}
.ws2a{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.248000pt;}
.ws1f{word-spacing:-13.216000pt;}
.wsf{word-spacing:-12.746667pt;}
.wse{word-spacing:-12.229333pt;}
.ws1e{word-spacing:-11.733333pt;}
.ws17{word-spacing:-11.440000pt;}
.ws21{word-spacing:-11.093333pt;}
.wsa{word-spacing:-11.026667pt;}
.ws26{word-spacing:-10.933333pt;}
.ws35{word-spacing:-10.805333pt;}
.ws20{word-spacing:-10.400000pt;}
.ws2e{word-spacing:-10.133333pt;}
.ws24{word-spacing:-10.026667pt;}
.ws8{word-spacing:-9.728000pt;}
.ws2{word-spacing:-9.568000pt;}
.ws3{word-spacing:-9.333333pt;}
.ws16{word-spacing:-9.173333pt;}
.ws1c{word-spacing:-8.426667pt;}
.ws1a{word-spacing:-7.013333pt;}
.ws2c{word-spacing:-6.400000pt;}
.ws29{word-spacing:-5.845333pt;}
.ws9{word-spacing:-5.760000pt;}
.wsc{word-spacing:-2.133333pt;}
.ws33{word-spacing:-1.722667pt;}
.ws1d{word-spacing:0.000000pt;}
.ws25{word-spacing:1.632000pt;}
.ws27{word-spacing:16.890667pt;}
.ws31{word-spacing:25.066667pt;}
.ws13{word-spacing:36.709333pt;}
.wsd{word-spacing:71.733333pt;}
._32{margin-left:-163.557333pt;}
._af{margin-left:-149.930667pt;}
._35{margin-left:-148.938667pt;}
._31{margin-left:-145.453333pt;}
._5f{margin-left:-142.293333pt;}
._33{margin-left:-138.282667pt;}
._60{margin-left:-124.053333pt;}
._95{margin-left:-58.714667pt;}
._76{margin-left:-56.560000pt;}
._c8{margin-left:-46.800000pt;}
._81{margin-left:-41.010667pt;}
._c9{margin-left:-37.282667pt;}
._75{margin-left:-33.114667pt;}
._c7{margin-left:-31.920000pt;}
._c6{margin-left:-30.474667pt;}
._77{margin-left:-29.120000pt;}
._18{margin-left:-27.424000pt;}
._8{margin-left:-25.333333pt;}
._9{margin-left:-24.266667pt;}
._9a{margin-left:-23.320000pt;}
._16{margin-left:-22.218667pt;}
._17{margin-left:-20.800000pt;}
._15{margin-left:-19.466667pt;}
._b{margin-left:-17.866667pt;}
._19{margin-left:-16.160000pt;}
._36{margin-left:-15.098667pt;}
._e{margin-left:-14.069333pt;}
._a{margin-left:-13.109333pt;}
._34{margin-left:-12.090667pt;}
._3{margin-left:-11.157333pt;}
._d{margin-left:-10.048000pt;}
._4{margin-left:-9.066667pt;}
._24{margin-left:-8.138667pt;}
._25{margin-left:-7.200000pt;}
._7{margin-left:-5.866667pt;}
._11{margin-left:-4.480000pt;}
._2e{margin-left:-3.573333pt;}
._1{margin-left:-2.666667pt;}
._0{margin-left:-1.600000pt;}
._c{width:1.733333pt;}
._13{width:3.394667pt;}
._37{width:4.301333pt;}
._6{width:5.200000pt;}
._1b{width:6.378667pt;}
._5{width:8.112000pt;}
._26{width:9.013333pt;}
._23{width:10.226667pt;}
._1e{width:11.373333pt;}
._22{width:13.138667pt;}
._1a{width:14.640000pt;}
._12{width:16.053333pt;}
._10{width:17.322667pt;}
._2a{width:18.533333pt;}
._1c{width:19.986667pt;}
._1f{width:20.960000pt;}
._61{width:21.856000pt;}
._2{width:22.933333pt;}
._3e{width:24.050667pt;}
._27{width:24.976000pt;}
._6e{width:25.909333pt;}
._f{width:26.800000pt;}
._30{width:27.960000pt;}
._28{width:29.333333pt;}
._20{width:30.546667pt;}
._2b{width:31.536000pt;}
._3c{width:32.936000pt;}
._4c{width:34.632000pt;}
._71{width:36.501333pt;}
._29{width:37.600000pt;}
._54{width:39.733333pt;}
._ca{width:41.474667pt;}
._67{width:42.600000pt;}
._1d{width:43.504000pt;}
._48{width:44.781333pt;}
._5d{width:46.088000pt;}
._47{width:48.480000pt;}
._5c{width:50.194667pt;}
._5e{width:52.733333pt;}
._42{width:53.698667pt;}
._41{width:55.101333pt;}
._3f{width:56.480000pt;}
._3d{width:58.173333pt;}
._40{width:59.104000pt;}
._56{width:60.000000pt;}
._68{width:61.845333pt;}
._2d{width:63.032000pt;}
._3b{width:65.261333pt;}
._5b{width:67.138667pt;}
._a9{width:68.416000pt;}
._39{width:69.405333pt;}
._2c{width:70.504000pt;}
._a4{width:71.517333pt;}
._70{width:73.381333pt;}
._6c{width:74.546667pt;}
._63{width:76.960000pt;}
._4d{width:78.709333pt;}
._38{width:80.480000pt;}
._45{width:82.098667pt;}
._6d{width:83.717333pt;}
._a2{width:91.338667pt;}
._4e{width:95.053333pt;}
._88{width:95.981333pt;}
._43{width:97.237333pt;}
._a3{width:100.160000pt;}
._72{width:105.040000pt;}
._74{width:109.909333pt;}
._5a{width:111.488000pt;}
._ac{width:113.184000pt;}
._a6{width:115.677333pt;}
._21{width:117.640000pt;}
._4b{width:120.208000pt;}
._49{width:121.866667pt;}
._59{width:124.760000pt;}
._84{width:127.034667pt;}
._82{width:131.365333pt;}
._7f{width:133.426667pt;}
._a0{width:134.933333pt;}
._53{width:140.133333pt;}
._51{width:142.104000pt;}
._97{width:144.237333pt;}
._c3{width:145.261333pt;}
._ab{width:147.210667pt;}
._7b{width:149.522667pt;}
._ba{width:153.034667pt;}
._b9{width:156.800000pt;}
._9c{width:158.666667pt;}
._ad{width:159.560000pt;}
._52{width:162.933333pt;}
._a5{width:165.506667pt;}
._c0{width:168.344000pt;}
._4a{width:172.240000pt;}
._ae{width:174.656000pt;}
._cb{width:177.738667pt;}
._8d{width:179.360000pt;}
._99{width:181.074667pt;}
._cc{width:183.301333pt;}
._3a{width:184.778667pt;}
._85{width:188.626667pt;}
._b6{width:200.458667pt;}
._ce{width:201.922667pt;}
._80{width:204.629333pt;}
._c2{width:206.149333pt;}
._44{width:207.749333pt;}
._4f{width:211.037333pt;}
._65{width:213.552000pt;}
._58{width:216.586667pt;}
._bf{width:218.666667pt;}
._cd{width:224.688000pt;}
._b4{width:230.818667pt;}
._46{width:232.672000pt;}
._83{width:239.370667pt;}
._bd{width:245.317333pt;}
._90{width:252.797333pt;}
._9e{width:259.736000pt;}
._96{width:261.906667pt;}
._57{width:273.776000pt;}
._c1{width:277.024000pt;}
._aa{width:281.792000pt;}
._93{width:283.557333pt;}
._b2{width:286.429333pt;}
._7e{width:294.744000pt;}
._8f{width:297.016000pt;}
._79{width:306.997333pt;}
._a1{width:314.354667pt;}
._91{width:316.221333pt;}
._7c{width:322.656000pt;}
._7a{width:331.672000pt;}
._9d{width:359.840000pt;}
._8b{width:375.072000pt;}
._2f{width:392.986667pt;}
._9f{width:415.048000pt;}
._8e{width:432.130667pt;}
._be{width:447.234667pt;}
._6b{width:497.226667pt;}
._b7{width:499.488000pt;}
._bc{width:510.181333pt;}
._89{width:527.242667pt;}
._bb{width:534.608000pt;}
._b5{width:548.458667pt;}
._92{width:553.960000pt;}
._7d{width:573.338667pt;}
._8c{width:580.026667pt;}
._6a{width:595.290667pt;}
._69{width:607.685333pt;}
._9b{width:667.682667pt;}
._50{width:702.608000pt;}
._55{width:705.066667pt;}
._94{width:708.997333pt;}
._b8{width:715.200000pt;}
._14{width:789.861333pt;}
._b1{width:891.818667pt;}
._87{width:946.384000pt;}
._86{width:973.946667pt;}
._8a{width:1069.096000pt;}
._c4{width:1111.826667pt;}
._62{width:1159.101333pt;}
._64{width:1191.466667pt;}
._73{width:1242.490667pt;}
._c5{width:1244.250667pt;}
._66{width:1323.189333pt;}
._6f{width:1463.826667pt;}
._a8{width:1472.616000pt;}
._98{width:1501.469333pt;}
._b3{width:1769.408000pt;}
._b0{width:1788.688000pt;}
._a7{width:2466.400000pt;}
._78{width:2818.938667pt;}
.fsd{font-size:21.333333pt;}
.fs17{font-size:24.000000pt;}
.fs12{font-size:25.600000pt;}
.fs15{font-size:32.000000pt;}
.fs2{font-size:34.666667pt;}
.fs16{font-size:36.266667pt;}
.fs11{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs14{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs13{font-size:82.666667pt;}
.fse{font-size:96.000000pt;}
.fs10{font-size:104.000000pt;}
.fs5{font-size:120.000000pt;}
.fs4{font-size:122.666667pt;}
.fsf{font-size:130.666667pt;}
.fsc{font-size:170.666667pt;}
.fs3{font-size:178.666667pt;}
.y0{bottom:0.000000pt;}
.y1a2{bottom:0.280000pt;}
.yff{bottom:45.080000pt;}
.yfe{bottom:51.213333pt;}
.yfd{bottom:120.280000pt;}
.yfc{bottom:127.080000pt;}
.yfb{bottom:159.346667pt;}
.yfa{bottom:166.013333pt;}
.yf9{bottom:197.746667pt;}
.yf8{bottom:204.146667pt;}
.yf7{bottom:275.880000pt;}
.yf6{bottom:281.613333pt;}
.yf5{bottom:312.280000pt;}
.yf4{bottom:319.613333pt;}
.yf0{bottom:388.413333pt;}
.yef{bottom:403.880000pt;}
.y181{bottom:405.746667pt;}
.yf3{bottom:409.880000pt;}
.y180{bottom:432.946667pt;}
.yf2{bottom:437.080000pt;}
.y17e{bottom:442.813333pt;}
.y17d{bottom:458.280000pt;}
.y17f{bottom:461.080000pt;}
.yf1{bottom:464.946667pt;}
.yee{bottom:508.813333pt;}
.y17c{bottom:512.680000pt;}
.yec{bottom:512.946667pt;}
.yed{bottom:515.213333pt;}
.ye9{bottom:573.080000pt;}
.yeb{bottom:574.413333pt;}
.y1a1{bottom:593.613333pt;}
.ye8{bottom:603.880000pt;}
.y17b{bottom:605.480000pt;}
.yea{bottom:607.613333pt;}
.yc2{bottom:670.413333pt;}
.y17a{bottom:671.080000pt;}
.ye7{bottom:672.946667pt;}
.yc1{bottom:688.680000pt;}
.y179{bottom:690.813333pt;}
.y1a0{bottom:694.680000pt;}
.ye6{bottom:695.080000pt;}
.yc0{bottom:705.880000pt;}
.y178{bottom:711.080000pt;}
.ye5{bottom:715.213333pt;}
.ybf{bottom:724.146667pt;}
.y177{bottom:725.080000pt;}
.ye4{bottom:728.680000pt;}
.ybe{bottom:742.413333pt;}
.y176{bottom:743.080000pt;}
.ye3{bottom:746.546667pt;}
.ybd{bottom:759.613333pt;}
.y175{bottom:760.280000pt;}
.ye2{bottom:764.813333pt;}
.ybc{bottom:776.946667pt;}
.y174{bottom:777.613333pt;}
.ye1{bottom:783.613333pt;}
.ybb{bottom:793.613333pt;}
.y173{bottom:794.546667pt;}
.y19f{bottom:799.346667pt;}
.y172{bottom:802.013333pt;}
.ye0{bottom:803.480000pt;}
.yba{bottom:809.880000pt;}
.y171{bottom:812.813333pt;}
.y16a{bottom:818.546667pt;}
.ydf{bottom:819.213333pt;}
.yb9{bottom:827.480000pt;}
.y170{bottom:832.013333pt;}
.y19e{bottom:832.280000pt;}
.y194{bottom:834.280000pt;}
.y169{bottom:835.880000pt;}
.yde{bottom:840.680000pt;}
.y19d{bottom:844.146667pt;}
.yb8{bottom:845.746667pt;}
.y195{bottom:851.213333pt;}
.y16f{bottom:851.480000pt;}
.ydd{bottom:855.613333pt;}
.y19c{bottom:860.413333pt;}
.yb7{bottom:864.013333pt;}
.y16e{bottom:869.080000pt;}
.y193{bottom:872.280000pt;}
.ydc{bottom:873.880000pt;}
.y190{bottom:877.480000pt;}
.y19b{bottom:878.680000pt;}
.yb6{bottom:882.280000pt;}
.y16d{bottom:887.613333pt;}
.y192{bottom:890.813333pt;}
.ydb{bottom:892.413333pt;}
.y19a{bottom:899.480000pt;}
.yb5{bottom:901.080000pt;}
.y16c{bottom:905.613333pt;}
.yda{bottom:910.680000pt;}
.y199{bottom:916.813333pt;}
.yb4{bottom:919.080000pt;}
.y16b{bottom:920.680000pt;}
.y168{bottom:927.346667pt;}
.yd9{bottom:928.680000pt;}
.y198{bottom:933.080000pt;}
.yb3{bottom:937.213333pt;}
.y166{bottom:942.013333pt;}
.y191{bottom:943.346667pt;}
.yd8{bottom:948.146667pt;}
.y197{bottom:953.213333pt;}
.yb2{bottom:955.880000pt;}
.y167{bottom:957.080000pt;}
.y165{bottom:962.546667pt;}
.yd7{bottom:965.746667pt;}
.y196{bottom:971.880000pt;}
.yb1{bottom:974.013333pt;}
.y164{bottom:979.213333pt;}
.yd6{bottom:984.280000pt;}
.yb0{bottom:992.013333pt;}
.y15f{bottom:993.613333pt;}
.yd5{bottom:1001.880000pt;}
.y163{bottom:1005.746667pt;}
.yaf{bottom:1010.280000pt;}
.y15e{bottom:1011.480000pt;}
.yd4{bottom:1019.880000pt;}
.y162{bottom:1024.280000pt;}
.yae{bottom:1028.413333pt;}
.y15d{bottom:1029.746667pt;}
.yd3{bottom:1037.746667pt;}
.yad{bottom:1046.680000pt;}
.y15c{bottom:1048.013333pt;}
.yd2{bottom:1056.280000pt;}
.yac{bottom:1064.946667pt;}
.y15b{bottom:1066.280000pt;}
.yd1{bottom:1075.880000pt;}
.yab{bottom:1083.213333pt;}
.y15a{bottom:1084.813333pt;}
.yd0{bottom:1093.480000pt;}
.y161{bottom:1097.613333pt;}
.yaa{bottom:1101.480000pt;}
.y159{bottom:1103.080000pt;}
.y160{bottom:1112.680000pt;}
.ycf{bottom:1114.280000pt;}
.ya9{bottom:1125.746667pt;}
.y158{bottom:1126.680000pt;}
.y152{bottom:1133.080000pt;}
.yce{bottom:1136.946667pt;}
.ya8{bottom:1144.013333pt;}
.y157{bottom:1145.213333pt;}
.y18f{bottom:1145.613333pt;}
.y151{bottom:1150.013333pt;}
.ycd{bottom:1152.280000pt;}
.ya7{bottom:1162.280000pt;}
.ya1{bottom:1162.546667pt;}
.y156{bottom:1163.480000pt;}
.ycc{bottom:1171.880000pt;}
.y150{bottom:1172.413333pt;}
.ya6{bottom:1180.413333pt;}
.y14f{bottom:1184.013333pt;}
.ycb{bottom:1191.346667pt;}
.ya5{bottom:1198.680000pt;}
.ya0{bottom:1199.080000pt;}
.yc3{bottom:1199.346667pt;}
.y14e{bottom:1203.213333pt;}
.yca{bottom:1207.080000pt;}
.ya4{bottom:1216.946667pt;}
.y155{bottom:1219.880000pt;}
.y14d{bottom:1221.080000pt;}
.yc9{bottom:1225.213333pt;}
.ya3{bottom:1235.213333pt;}
.y14c{bottom:1236.813333pt;}
.y154{bottom:1239.613333pt;}
.yc8{bottom:1243.480000pt;}
.ya2{bottom:1253.746667pt;}
.y14b{bottom:1255.613333pt;}
.y153{bottom:1257.213333pt;}
.yc7{bottom:1261.480000pt;}
.y9f{bottom:1271.613333pt;}
.y14a{bottom:1273.613333pt;}
.y145{bottom:1275.480000pt;}
.yc6{bottom:1277.480000pt;}
.y6b{bottom:1289.880000pt;}
.y18e{bottom:1290.813333pt;}
.y149{bottom:1291.480000pt;}
.y146{bottom:1295.080000pt;}
.yc5{bottom:1296.280000pt;}
.y6a{bottom:1308.146667pt;}
.y148{bottom:1309.746667pt;}
.y69{bottom:1326.413333pt;}
.y147{bottom:1328.013333pt;}
.yc4{bottom:1337.880000pt;}
.y68{bottom:1344.680000pt;}
.y67{bottom:1363.213333pt;}
.y9e{bottom:1374.680000pt;}
.y66{bottom:1381.080000pt;}
.y9d{bottom:1394.813333pt;}
.y144{bottom:1396.813333pt;}
.y65{bottom:1399.346667pt;}
.y140{bottom:1402.280000pt;}
.y9c{bottom:1402.813333pt;}
.y143{bottom:1404.813333pt;}
.y64{bottom:1417.613333pt;}
.y13f{bottom:1419.213333pt;}
.y142{bottom:1423.080000pt;}
.y63{bottom:1436.146667pt;}
.y13e{bottom:1437.480000pt;}
.y18d{bottom:1438.413333pt;}
.y141{bottom:1442.280000pt;}
.y9b{bottom:1444.413333pt;}
.y62{bottom:1454.680000pt;}
.y61{bottom:1472.946667pt;}
.y9a{bottom:1478.013333pt;}
.y60{bottom:1491.213333pt;}
.y99{bottom:1503.080000pt;}
.y5f{bottom:1509.746667pt;}
.y18c{bottom:1514.280000pt;}
.y98{bottom:1519.080000pt;}
.y97{bottom:1523.213333pt;}
.y7f{bottom:1527.346667pt;}
.y5e{bottom:1528.013333pt;}
.y96{bottom:1537.613333pt;}
.y7e{bottom:1541.746667pt;}
.y5d{bottom:1546.280000pt;}
.y7d{bottom:1546.813333pt;}
.y95{bottom:1552.680000pt;}
.y7c{bottom:1564.146667pt;}
.y5c{bottom:1564.813333pt;}
.y94{bottom:1581.480000pt;}
.y7b{bottom:1582.413333pt;}
.y5b{bottom:1582.680000pt;}
.y5a{bottom:1600.680000pt;}
.y13c{bottom:1602.280000pt;}
.y93{bottom:1603.880000pt;}
.y13b{bottom:1607.346667pt;}
.y59{bottom:1617.613333pt;}
.y7a{bottom:1617.880000pt;}
.y91{bottom:1620.413333pt;}
.y13d{bottom:1621.080000pt;}
.y13a{bottom:1621.480000pt;}
.y58{bottom:1636.146667pt;}
.y79{bottom:1636.413333pt;}
.y139{bottom:1639.346667pt;}
.y90{bottom:1645.080000pt;}
.y57{bottom:1654.413333pt;}
.y138{bottom:1656.680000pt;}
.y8f{bottom:1661.480000pt;}
.y56{bottom:1672.680000pt;}
.y137{bottom:1674.813333pt;}
.y78{bottom:1675.880000pt;}
.y8e{bottom:1680.946667pt;}
.y55{bottom:1691.213333pt;}
.y136{bottom:1694.013333pt;}
.y77{bottom:1696.013333pt;}
.y8d{bottom:1699.213333pt;}
.y54{bottom:1709.080000pt;}
.y75{bottom:1709.480000pt;}
.y135{bottom:1712.680000pt;}
.y8c{bottom:1717.746667pt;}
.y53{bottom:1727.613333pt;}
.y76{bottom:1730.813333pt;}
.y8b{bottom:1735.613333pt;}
.y74{bottom:1737.880000pt;}
.y52{bottom:1745.880000pt;}
.y73{bottom:1746.813333pt;}
.y134{bottom:1749.080000pt;}
.y8a{bottom:1754.280000pt;}
.y51{bottom:1763.880000pt;}
.y18b{bottom:1766.013333pt;}
.y133{bottom:1766.413333pt;}
.y89{bottom:1767.613333pt;}
.y50{bottom:1782.013333pt;}
.y92{bottom:1782.413333pt;}
.y132{bottom:1784.280000pt;}
.y88{bottom:1785.213333pt;}
.y4f{bottom:1800.280000pt;}
.y35{bottom:1801.613333pt;}
.y131{bottom:1802.280000pt;}
.y87{bottom:1804.146667pt;}
.y4e{bottom:1818.546667pt;}
.y34{bottom:1819.480000pt;}
.y130{bottom:1820.813333pt;}
.y86{bottom:1822.013333pt;}
.y4d{bottom:1837.080000pt;}
.y33{bottom:1837.746667pt;}
.y85{bottom:1840.946667pt;}
.y72{bottom:1846.680000pt;}
.y4c{bottom:1855.080000pt;}
.y84{bottom:1859.880000pt;}
.y71{bottom:1864.013333pt;}
.y4b{bottom:1872.946667pt;}
.y12b{bottom:1878.413333pt;}
.y83{bottom:1879.346667pt;}
.y4a{bottom:1891.213333pt;}
.y18a{bottom:1892.813333pt;}
.y12a{bottom:1896.680000pt;}
.y82{bottom:1897.880000pt;}
.y12f{bottom:1898.546667pt;}
.y189{bottom:1906.546667pt;}
.y49{bottom:1909.746667pt;}
.y12e{bottom:1912.946667pt;}
.y129{bottom:1914.546667pt;}
.y81{bottom:1916.146667pt;}
.y128{bottom:1921.213333pt;}
.y48{bottom:1927.613333pt;}
.y12d{bottom:1930.546667pt;}
.y127{bottom:1932.413333pt;}
.y80{bottom:1933.746667pt;}
.y47{bottom:1946.280000pt;}
.y12c{bottom:1948.413333pt;}
.y126{bottom:1950.680000pt;}
.y46{bottom:1964.413333pt;}
.y45{bottom:1982.280000pt;}
.y44{bottom:2000.546667pt;}
.y43{bottom:2018.813333pt;}
.y42{bottom:2037.080000pt;}
.y6c{bottom:2040.946667pt;}
.y41{bottom:2055.080000pt;}
.y40{bottom:2073.213333pt;}
.y3f{bottom:2093.080000pt;}
.y123{bottom:2112.946667pt;}
.y125{bottom:2113.880000pt;}
.y122{bottom:2116.813333pt;}
.y3e{bottom:2117.746667pt;}
.y124{bottom:2128.680000pt;}
.y121{bottom:2132.813333pt;}
.y3d{bottom:2136.280000pt;}
.y120{bottom:2150.413333pt;}
.y3c{bottom:2154.280000pt;}
.y11f{bottom:2167.080000pt;}
.y3b{bottom:2172.813333pt;}
.y118{bottom:2174.680000pt;}
.y3a{bottom:2191.080000pt;}
.y117{bottom:2192.680000pt;}
.y39{bottom:2209.213333pt;}
.y116{bottom:2211.213333pt;}
.y38{bottom:2227.213333pt;}
.y115{bottom:2229.480000pt;}
.y37{bottom:2245.480000pt;}
.y114{bottom:2247.080000pt;}
.y11e{bottom:2248.013333pt;}
.y11d{bottom:2256.680000pt;}
.y70{bottom:2259.213333pt;}
.y11c{bottom:2274.280000pt;}
.y6f{bottom:2277.080000pt;}
.y36{bottom:2279.613333pt;}
.y11b{bottom:2293.080000pt;}
.y6e{bottom:2295.613333pt;}
.y32{bottom:2309.080000pt;}
.y11a{bottom:2311.346667pt;}
.y6d{bottom:2312.280000pt;}
.y31{bottom:2317.480000pt;}
.y111{bottom:2318.013333pt;}
.y119{bottom:2329.613333pt;}
.y113{bottom:2346.813333pt;}
.y30{bottom:2347.480000pt;}
.y110{bottom:2350.413333pt;}
.y2f{bottom:2354.546667pt;}
.y1d{bottom:2355.213333pt;}
.y2e{bottom:2355.480000pt;}
.y112{bottom:2360.280000pt;}
.y10f{bottom:2366.013333pt;}
.y2d{bottom:2368.946667pt;}
.y1c{bottom:2373.480000pt;}
.y2c{bottom:2387.213333pt;}
.y10e{bottom:2391.346667pt;}
.y1b{bottom:2391.613333pt;}
.y2b{bottom:2406.413333pt;}
.y1a{bottom:2409.613333pt;}
.y10d{bottom:2409.880000pt;}
.y183{bottom:2419.213333pt;}
.y2a{bottom:2424.280000pt;}
.y19{bottom:2425.880000pt;}
.y29{bottom:2427.880000pt;}
.y28{bottom:2440.946667pt;}
.y18{bottom:2444.146667pt;}
.y10c{bottom:2445.080000pt;}
.y188{bottom:2451.880000pt;}
.y10b{bottom:2454.680000pt;}
.y17{bottom:2462.680000pt;}
.y27{bottom:2464.280000pt;}
.y10a{bottom:2471.346667pt;}
.y16{bottom:2480.946667pt;}
.y109{bottom:2489.613333pt;}
.y186{bottom:2497.213333pt;}
.y15{bottom:2498.813333pt;}
.y108{bottom:2507.480000pt;}
.y26{bottom:2513.613333pt;}
.y14{bottom:2516.813333pt;}
.y185{bottom:2518.680000pt;}
.y107{bottom:2526.413333pt;}
.y25{bottom:2531.213333pt;}
.y187{bottom:2532.146667pt;}
.y13{bottom:2534.680000pt;}
.y21{bottom:2541.080000pt;}
.y106{bottom:2544.280000pt;}
.y184{bottom:2550.013333pt;}
.y24{bottom:2550.413333pt;}
.y12{bottom:2552.946667pt;}
.y105{bottom:2563.880000pt;}
.y23{bottom:2568.013333pt;}
.y11{bottom:2570.813333pt;}
.y20{bottom:2572.413333pt;}
.y1f{bottom:2579.880000pt;}
.y104{bottom:2581.480000pt;}
.y22{bottom:2586.280000pt;}
.y10{bottom:2588.146667pt;}
.y103{bottom:2596.813333pt;}
.y1e{bottom:2623.346667pt;}
.y102{bottom:2627.880000pt;}
.yf{bottom:2657.213333pt;}
.y101{bottom:2699.213333pt;}
.ye{bottom:2700.146667pt;}
.y9{bottom:2702.413333pt;}
.y100{bottom:2728.680000pt;}
.yd{bottom:2731.880000pt;}
.yc{bottom:2734.013333pt;}
.y8{bottom:2734.680000pt;}
.yb{bottom:2775.613333pt;}
.y7{bottom:2777.613333pt;}
.ya{bottom:2851.880000pt;}
.y182{bottom:2883.480000pt;}
.y6{bottom:2890.546667pt;}
.y5{bottom:2928.680000pt;}
.y4{bottom:2967.080000pt;}
.y3{bottom:3005.480000pt;}
.y2{bottom:3082.546667pt;}
.y1{bottom:3144.280000pt;}
.h25{height:14.562500pt;}
.h26{height:16.020833pt;}
.h2e{height:17.472656pt;}
.h2f{height:18.145833pt;}
.h1d{height:25.187500pt;}
.h3{height:26.067708pt;}
.h20{height:29.486979pt;}
.h22{height:29.808594pt;}
.he{height:33.769531pt;}
.h24{height:35.273438pt;}
.hb{height:36.093750pt;}
.h1f{height:38.559896pt;}
.h2a{height:38.980469pt;}
.h1c{height:39.101562pt;}
.h28{height:39.244792pt;}
.h16{height:40.963542pt;}
.h21{height:41.273438pt;}
.h2d{height:43.566406pt;}
.h4{height:45.364583pt;}
.h9{height:45.859375pt;}
.h5{height:46.210938pt;}
.h15{height:46.431250pt;}
.hf{height:46.964583pt;}
.h12{height:47.992708pt;}
.h13{height:49.097917pt;}
.hd{height:49.901042pt;}
.h2{height:51.018229pt;}
.h10{height:53.326042pt;}
.h11{height:53.364583pt;}
.h29{height:54.437500pt;}
.h27{height:55.097656pt;}
.h14{height:56.031250pt;}
.h19{height:69.140625pt;}
.h23{height:75.494792pt;}
.h18{height:75.764583pt;}
.ha{height:81.757812pt;}
.h1e{height:87.089844pt;}
.h7{height:88.300781pt;}
.h1b{height:88.460938pt;}
.h1a{height:89.304688pt;}
.hc{height:96.564583pt;}
.h17{height:114.500000pt;}
.h6{height:119.082031pt;}
.h8{height:131.295573pt;}
.h0{height:3208.333333pt;}
.h1{height:3208.666667pt;}
.h2b{height:3209.933333pt;}
.h2c{height:3210.000000pt;}
.w4{width:1652.666667pt;}
.w3{width:1652.800000pt;}
.w2{width:1661.133333pt;}
.w1{width:1661.333333pt;}
.w0{width:1661.466667pt;}
.x0{left:0.000000pt;}
.xe7{left:117.733333pt;}
.x6{left:166.133333pt;}
.xe8{left:174.133333pt;}
.xe0{left:182.666667pt;}
.xd9{left:185.600000pt;}
.xd8{left:190.666667pt;}
.xda{left:192.000000pt;}
.xd7{left:193.333333pt;}
.xc2{left:194.266667pt;}
.xd0{left:195.200000pt;}
.xb8{left:196.133333pt;}
.xb4{left:197.733333pt;}
.xa2{left:199.333333pt;}
.x67{left:200.666667pt;}
.x78{left:201.600000pt;}
.x84{left:203.600000pt;}
.x7e{left:204.533333pt;}
.x77{left:206.000000pt;}
.x2c{left:207.733333pt;}
.xe{left:208.933333pt;}
.xf{left:210.000000pt;}
.xd{left:210.933333pt;}
.x29{left:212.133333pt;}
.x12{left:213.466667pt;}
.x11{left:214.400000pt;}
.xb9{left:215.333333pt;}
.xd5{left:216.666667pt;}
.xa3{left:217.600000pt;}
.xa1{left:218.533333pt;}
.x83{left:221.200000pt;}
.x52{left:227.200000pt;}
.x2b{left:228.800000pt;}
.x2a{left:230.133333pt;}
.x28{left:231.066667pt;}
.x10{left:234.266667pt;}
.x79{left:239.733333pt;}
.x1{left:242.266667pt;}
.x9d{left:261.733333pt;}
.x5{left:298.533333pt;}
.xe1{left:306.533333pt;}
.x82{left:318.800000pt;}
.x9e{left:322.266667pt;}
.x68{left:324.800000pt;}
.x27{left:328.000000pt;}
.xe2{left:334.400000pt;}
.xcf{left:336.000000pt;}
.x69{left:352.666667pt;}
.x7f{left:353.600000pt;}
.x25{left:360.933333pt;}
.x26{left:365.733333pt;}
.x9f{left:386.266667pt;}
.x32{left:402.000000pt;}
.x36{left:402.933333pt;}
.x35{left:403.866667pt;}
.xc3{left:406.666667pt;}
.x37{left:412.533333pt;}
.xc4{left:418.266667pt;}
.xa0{left:430.666667pt;}
.xc5{left:445.200000pt;}
.x2d{left:446.400000pt;}
.x2{left:477.466667pt;}
.x4{left:478.800000pt;}
.x7{left:479.733333pt;}
.x9{left:480.666667pt;}
.xc{left:481.600000pt;}
.x17{left:483.200000pt;}
.x24{left:484.133333pt;}
.x33{left:486.800000pt;}
.x4d{left:488.000000pt;}
.x38{left:490.933333pt;}
.x3{left:492.800000pt;}
.x39{left:495.733333pt;}
.xe9{left:498.000000pt;}
.x15{left:500.800000pt;}
.xa{left:502.133333pt;}
.x14{left:504.933333pt;}
.x16{left:506.533333pt;}
.x1d{left:508.800000pt;}
.x34{left:510.000000pt;}
.xb{left:514.266667pt;}
.x1b{left:516.400000pt;}
.x3b{left:519.733333pt;}
.x41{left:520.666667pt;}
.xdb{left:521.866667pt;}
.x4f{left:522.933333pt;}
.x44{left:525.733333pt;}
.x43{left:527.066667pt;}
.x1c{left:530.800000pt;}
.x49{left:541.200000pt;}
.x51{left:544.400000pt;}
.x50{left:547.866667pt;}
.x75{left:558.000000pt;}
.xbb{left:561.600000pt;}
.x74{left:571.466667pt;}
.x53{left:589.066667pt;}
.xb5{left:597.466667pt;}
.x6a{left:600.266667pt;}
.x6b{left:602.266667pt;}
.x18{left:618.533333pt;}
.xb6{left:620.133333pt;}
.x6c{left:625.866667pt;}
.xcb{left:627.200000pt;}
.x85{left:628.133333pt;}
.xbc{left:630.266667pt;}
.x86{left:631.733333pt;}
.x2f{left:636.800000pt;}
.x3a{left:638.800000pt;}
.x5d{left:640.933333pt;}
.x61{left:643.466667pt;}
.x63{left:644.400000pt;}
.x70{left:654.133333pt;}
.x57{left:655.333333pt;}
.x56{left:656.266667pt;}
.x73{left:657.200000pt;}
.x5b{left:658.266667pt;}
.x60{left:659.200000pt;}
.x71{left:663.066667pt;}
.x62{left:664.266667pt;}
.x55{left:665.200000pt;}
.xc6{left:666.800000pt;}
.x4b{left:672.000000pt;}
.x5a{left:673.600000pt;}
.x72{left:674.533333pt;}
.x5e{left:675.866667pt;}
.x5f{left:678.000000pt;}
.x64{left:679.066667pt;}
.x66{left:680.266667pt;}
.x65{left:681.866667pt;}
.x8d{left:683.574667pt;}
.x8c{left:684.517333pt;}
.xa4{left:686.400000pt;}
.x5c{left:687.333333pt;}
.xa5{left:690.933333pt;}
.x8e{left:692.193333pt;}
.xe4{left:693.733333pt;}
.xc7{left:701.066667pt;}
.xa6{left:718.400000pt;}
.x13{left:731.866667pt;}
.xba{left:743.600000pt;}
.xea{left:748.400000pt;}
.xc8{left:752.400000pt;}
.xca{left:757.466667pt;}
.x87{left:763.600000pt;}
.x3f{left:765.066667pt;}
.x3e{left:768.666667pt;}
.x40{left:769.600000pt;}
.x59{left:771.733333pt;}
.xdc{left:773.066667pt;}
.xa7{left:774.133333pt;}
.x19{left:778.533333pt;}
.x88{left:780.400000pt;}
.xbd{left:797.333333pt;}
.xf4{left:799.066667pt;}
.x58{left:801.866667pt;}
.xdd{left:804.133333pt;}
.x1e{left:812.800000pt;}
.x45{left:815.333333pt;}
.x102{left:823.333333pt;}
.xf7{left:838.400000pt;}
.x7a{left:840.933333pt;}
.xf6{left:842.266667pt;}
.x46{left:845.066667pt;}
.x47{left:850.933333pt;}
.x76{left:858.933333pt;}
.xe3{left:869.733333pt;}
.xb7{left:874.000000pt;}
.x7b{left:875.600000pt;}
.x3c{left:882.000000pt;}
.xf5{left:887.066667pt;}
.xc0{left:889.866667pt;}
.xde{left:898.933333pt;}
.x1f{left:930.000000pt;}
.x3d{left:931.200000pt;}
.x20{left:933.466667pt;}
.x4c{left:953.333333pt;}
.x48{left:955.733333pt;}
.xa8{left:965.066667pt;}
.xf0{left:968.000000pt;}
.x101{left:986.266667pt;}
.xdf{left:994.933333pt;}
.xf8{left:995.866667pt;}
.x8f{left:1001.333333pt;}
.x21{left:1019.600000pt;}
.x22{left:1024.400000pt;}
.x23{left:1030.400000pt;}
.x90{left:1064.266667pt;}
.xeb{left:1067.600000pt;}
.x2e{left:1069.200000pt;}
.xd1{left:1078.000000pt;}
.xc9{left:1079.333333pt;}
.x103{left:1088.666667pt;}
.xf3{left:1090.000000pt;}
.x42{left:1091.600000pt;}
.x30{left:1093.200000pt;}
.xec{left:1100.133333pt;}
.x4e{left:1101.466667pt;}
.xed{left:1104.933333pt;}
.x80{left:1112.400000pt;}
.xd6{left:1115.600000pt;}
.x31{left:1117.200000pt;}
.xf2{left:1122.000000pt;}
.x81{left:1122.933333pt;}
.xe6{left:1132.800000pt;}
.x89{left:1134.034667pt;}
.x6e{left:1146.533333pt;}
.xa9{left:1157.466667pt;}
.xe5{left:1163.600000pt;}
.xee{left:1164.533333pt;}
.xef{left:1166.800000pt;}
.x8{left:1173.066667pt;}
.x6d{left:1180.133333pt;}
.x9b{left:1188.400000pt;}
.x8a{left:1190.460000pt;}
.x7c{left:1196.400000pt;}
.xc1{left:1202.933333pt;}
.x6f{left:1205.466667pt;}
.xaa{left:1206.400000pt;}
.x4a{left:1208.400000pt;}
.x91{left:1211.733333pt;}
.x7d{left:1212.800000pt;}
.xcc{left:1215.066667pt;}
.xfb{left:1223.333333pt;}
.x54{left:1234.533333pt;}
.xab{left:1238.400000pt;}
.x8b{left:1242.845333pt;}
.xac{left:1244.400000pt;}
.x92{left:1249.866667pt;}
.xd2{left:1255.066667pt;}
.xf1{left:1256.400000pt;}
.xcd{left:1259.200000pt;}
.xce{left:1260.133333pt;}
.xf9{left:1263.733333pt;}
.xad{left:1274.933333pt;}
.xae{left:1281.600000pt;}
.xfc{left:1292.533333pt;}
.x1a{left:1298.533333pt;}
.xfd{left:1300.533333pt;}
.x93{left:1315.466667pt;}
.x94{left:1331.733333pt;}
.xaf{left:1349.066667pt;}
.xb0{left:1354.533333pt;}
.xfa{left:1355.600000pt;}
.xbe{left:1368.000000pt;}
.xbf{left:1371.733333pt;}
.xd4{left:1388.400000pt;}
.xfe{left:1411.600000pt;}
.x104{left:1413.733333pt;}
.xff{left:1415.066667pt;}
.x95{left:1416.533333pt;}
.xd3{left:1417.866667pt;}
.x100{left:1421.733333pt;}
.x96{left:1439.333333pt;}
.xb1{left:1441.866667pt;}
.xb2{left:1447.066667pt;}
.x97{left:1453.466667pt;}
.x105{left:1458.533333pt;}
.x98{left:1464.533333pt;}
.x99{left:1475.066667pt;}
.xb3{left:1477.066667pt;}
.x9a{left:1483.200000pt;}
.x9c{left:1496.933333pt;}
}




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