
    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_fcc4dfa953e151052c058c3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_6a775e939bad44263bf46028.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6df1e98efac2408200ac8828.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.431000;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_277c2d5c9173e76732af0244.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_8b6689788ac2a2109853b338.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_e344bd27ab500ae3d6a409c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_6e4214485b775f315bcef0d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4469828b00b4a251188932ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_56eb394fc5e88748182e74e3.woff2')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_4954d9b1f3d83155a24c0f2b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.792000;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_8fb5e88a26d0249673678813.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_80bacf30ca1da7ce9a860fc6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.683000;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_f2f4771cad9a003c18d6e8fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;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_76943bddc6be34e140d31598.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;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_438f813104904e6a894e588c.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;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_e34a32a0dfc2d9a9f4578e57.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675000;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_ea14760a10341f68d6f22da7.woff2')format("woff");}.ff11{font-family:ff11;line-height:2.222000;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;}
.m9{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);}
.md{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);}
.m25{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m0{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);}
.m1b{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);}
.m16{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);}
.m18{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);}
.ma{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);}
.m7{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);}
.mb{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);}
.m23{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);}
.m1c{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);}
.m12{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);}
.m1e{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);}
.mc{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);}
.m21{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);}
.m22{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);}
.m1d{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);}
.m1{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);}
.m17{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);}
.m26{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);}
.m8{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);}
.m2{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);}
.m15{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);}
.m14{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);}
.m13{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);}
.m5{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);}
.m10{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);}
.mf{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);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m24{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);}
.m19{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);}
.m6{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);}
.m3{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);}
.v7{vertical-align:-14.778000px;}
.v2{vertical-align:-8.964000px;}
.v4{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:24.330000px;}
.v6{vertical-align:28.572000px;}
.v5{vertical-align:34.584000px;}
.ls8{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000312px;}
.ls31{letter-spacing:0.000648px;}
.ls44{letter-spacing:0.001908px;}
.ls35{letter-spacing:0.002245px;}
.ls21{letter-spacing:0.002685px;}
.lsc{letter-spacing:0.003269px;}
.ls2d{letter-spacing:0.003954px;}
.ls20{letter-spacing:0.004200px;}
.ls48{letter-spacing:0.004893px;}
.ls40{letter-spacing:0.005023px;}
.ls29{letter-spacing:0.005602px;}
.ls4c{letter-spacing:0.458387px;}
.ls2a{letter-spacing:1.006868px;}
.ls14{letter-spacing:1.012868px;}
.lsa{letter-spacing:2.964877px;}
.ls4b{letter-spacing:2.982648px;}
.ls26{letter-spacing:2.984525px;}
.ls49{letter-spacing:2.986181px;}
.ls30{letter-spacing:2.988648px;}
.lsb{letter-spacing:2.988780px;}
.ls7{letter-spacing:3.584074px;}
.ls24{letter-spacing:3.994868px;}
.ls12{letter-spacing:4.000868px;}
.ls45{letter-spacing:4.275333px;}
.ls11{letter-spacing:4.688646px;}
.ls13{letter-spacing:4.694646px;}
.ls1{letter-spacing:5.123296px;}
.ls5{letter-spacing:5.161426px;}
.ls2{letter-spacing:5.164349px;}
.ls3{letter-spacing:5.166516px;}
.ls4{letter-spacing:5.167426px;}
.ls0{letter-spacing:5.168944px;}
.ls34{letter-spacing:6.433866px;}
.ls3a{letter-spacing:8.298312px;}
.ls37{letter-spacing:8.304312px;}
.ls32{letter-spacing:8.752065px;}
.ls2e{letter-spacing:9.426479px;}
.ls1f{letter-spacing:9.958200px;}
.ls23{letter-spacing:9.962338px;}
.ls36{letter-spacing:9.963269px;}
.ls1b{letter-spacing:9.964200px;}
.ls4f{letter-spacing:13.278538px;}
.ls4e{letter-spacing:13.280338px;}
.ls39{letter-spacing:13.281269px;}
.ls42{letter-spacing:13.282200px;}
.ls1e{letter-spacing:13.284538px;}
.ls1d{letter-spacing:13.286685px;}
.ls6{letter-spacing:14.942100px;}
.ls28{letter-spacing:14.942685px;}
.ls18{letter-spacing:14.948685px;}
.ls41{letter-spacing:16.268525px;}
.ls4d{letter-spacing:16.274525px;}
.ls4a{letter-spacing:16.600618px;}
.ls3d{letter-spacing:16.601023px;}
.ls1a{letter-spacing:16.602538px;}
.ls27{letter-spacing:16.604338px;}
.lsf{letter-spacing:16.604400px;}
.ls1c{letter-spacing:16.604685px;}
.ls22{letter-spacing:16.605269px;}
.ls3e{letter-spacing:16.607607px;}
.ls43{letter-spacing:17.930525px;}
.ls9{letter-spacing:17.934017px;}
.ls10{letter-spacing:19.586525px;}
.ls2f{letter-spacing:19.590648px;}
.lse{letter-spacing:19.592525px;}
.ls47{letter-spacing:20.036338px;}
.ls46{letter-spacing:20.038618px;}
.ls2b{letter-spacing:21.293915px;}
.ls3f{letter-spacing:21.463690px;}
.ls19{letter-spacing:23.125690px;}
.ls2c{letter-spacing:23.238052px;}
.ls3c{letter-spacing:24.090538px;}
.lsd{letter-spacing:25.360065px;}
.ls33{letter-spacing:26.566677px;}
.ls3b{letter-spacing:27.078648px;}
.ls17{letter-spacing:76.376338px;}
.ls15{letter-spacing:1116.368338px;}
.ls16{letter-spacing:1144.940338px;}
.ls25{letter-spacing:1258.238338px;}
.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;}
}
.ws4a{word-spacing:-49.852850px;}
.ws62{word-spacing:-49.793075px;}
.ws61{word-spacing:-43.191683px;}
.ws52{word-spacing:-43.171200px;}
.ws55{word-spacing:-43.157983px;}
.ws64{word-spacing:-43.149330px;}
.ws49{word-spacing:-38.937826px;}
.ws63{word-spacing:-31.633157px;}
.ws28{word-spacing:-29.015076px;}
.ws96{word-spacing:-28.955301px;}
.ws57{word-spacing:-26.552136px;}
.ws56{word-spacing:-26.546136px;}
.ws2{word-spacing:-25.823100px;}
.ws4{word-spacing:-25.781746px;}
.ws7c{word-spacing:-22.336781px;}
.ws54{word-spacing:-22.324786px;}
.ws1{word-spacing:-20.658450px;}
.ws38{word-spacing:-14.943900px;}
.ws1f{word-spacing:-2.988780px;}
.ws88{word-spacing:-2.510575px;}
.ws48{word-spacing:-2.450800px;}
.ws3f{word-spacing:-2.271473px;}
.ws42{word-spacing:-2.032370px;}
.ws2e{word-spacing:-1.853044px;}
.ws9d{word-spacing:-1.793268px;}
.ws33{word-spacing:-1.733492px;}
.ws2d{word-spacing:-1.673717px;}
.ws99{word-spacing:-1.666676px;}
.ws9b{word-spacing:-1.662575px;}
.ws9a{word-spacing:-1.660775px;}
.ws31{word-spacing:-1.554166px;}
.ws43{word-spacing:-1.434614px;}
.ws21{word-spacing:-1.255288px;}
.ws39{word-spacing:-1.016185px;}
.ws19{word-spacing:-0.896634px;}
.ws3d{word-spacing:-0.836858px;}
.ws5a{word-spacing:-0.657532px;}
.ws59{word-spacing:-0.597756px;}
.ws40{word-spacing:-0.537980px;}
.ws2b{word-spacing:-0.418429px;}
.ws29{word-spacing:-0.358654px;}
.ws10{word-spacing:-0.298878px;}
.ws22{word-spacing:-0.239102px;}
.wsc{word-spacing:-0.179327px;}
.wsd{word-spacing:-0.119551px;}
.ws9f{word-spacing:-0.071731px;}
.ws9{word-spacing:-0.059776px;}
.wsb{word-spacing:-0.057385px;}
.ws4c{word-spacing:-0.041843px;}
.ws1c{word-spacing:-0.016097px;}
.ws65{word-spacing:-0.005546px;}
.ws92{word-spacing:-0.004909px;}
.ws27{word-spacing:-0.002232px;}
.ws35{word-spacing:-0.000683px;}
.wsa{word-spacing:0.000000px;}
.ws1e{word-spacing:0.020780px;}
.ws26{word-spacing:0.059776px;}
.ws17{word-spacing:0.119551px;}
.ws0{word-spacing:0.165268px;}
.ws15{word-spacing:0.179327px;}
.ws12{word-spacing:0.239102px;}
.wsf{word-spacing:0.298878px;}
.ws3a{word-spacing:0.358654px;}
.ws20{word-spacing:0.418429px;}
.ws83{word-spacing:0.478205px;}
.ws4e{word-spacing:0.597756px;}
.wse{word-spacing:0.657532px;}
.ws75{word-spacing:0.717307px;}
.ws44{word-spacing:0.777083px;}
.ws2f{word-spacing:0.836858px;}
.ws30{word-spacing:0.896634px;}
.ws6f{word-spacing:0.956410px;}
.ws23{word-spacing:1.016185px;}
.ws36{word-spacing:1.075961px;}
.ws4d{word-spacing:1.315063px;}
.ws3b{word-spacing:1.374839px;}
.ws66{word-spacing:1.434614px;}
.ws7e{word-spacing:1.494390px;}
.ws70{word-spacing:1.613941px;}
.ws77{word-spacing:1.673717px;}
.ws91{word-spacing:1.733492px;}
.ws32{word-spacing:1.793268px;}
.ws50{word-spacing:1.912819px;}
.ws11{word-spacing:2.032370px;}
.ws1a{word-spacing:2.151922px;}
.ws72{word-spacing:2.211697px;}
.ws8b{word-spacing:2.391024px;}
.ws78{word-spacing:2.450800px;}
.ws86{word-spacing:2.510575px;}
.ws76{word-spacing:2.570351px;}
.ws6a{word-spacing:2.630126px;}
.ws73{word-spacing:2.689902px;}
.ws9e{word-spacing:2.749678px;}
.ws7b{word-spacing:2.809453px;}
.ws41{word-spacing:2.929004px;}
.ws1d{word-spacing:2.988780px;}
.ws67{word-spacing:3.108331px;}
.ws82{word-spacing:3.168107px;}
.ws68{word-spacing:3.347434px;}
.ws85{word-spacing:3.466985px;}
.ws8f{word-spacing:3.646312px;}
.ws7f{word-spacing:3.825638px;}
.ws7a{word-spacing:3.885414px;}
.ws69{word-spacing:4.124516px;}
.ws5c{word-spacing:4.363619px;}
.ws71{word-spacing:4.423394px;}
.ws9c{word-spacing:4.483170px;}
.ws24{word-spacing:4.542946px;}
.ws1b{word-spacing:4.734259px;}
.ws6b{word-spacing:5.080926px;}
.ws14{word-spacing:5.200477px;}
.ws89{word-spacing:5.260253px;}
.ws2c{word-spacing:5.379804px;}
.ws18{word-spacing:5.439580px;}
.ws79{word-spacing:5.738458px;}
.wsa1{word-spacing:6.574867px;}
.ws25{word-spacing:6.694867px;}
.ws90{word-spacing:7.113296px;}
.wsa2{word-spacing:7.471950px;}
.ws13{word-spacing:8.189257px;}
.ws5e{word-spacing:9.145728px;}
.ws7{word-spacing:10.246591px;}
.ws6{word-spacing:10.277686px;}
.ws3{word-spacing:10.460508px;}
.ws5{word-spacing:11.775334px;}
.ws87{word-spacing:12.373549px;}
.ws53{word-spacing:13.210408px;}
.ws84{word-spacing:13.449510px;}
.ws60{word-spacing:13.628837px;}
.wsa0{word-spacing:14.405920px;}
.ws2a{word-spacing:14.434606px;}
.ws74{word-spacing:14.485167px;}
.ws3c{word-spacing:14.557186px;}
.ws8a{word-spacing:14.704798px;}
.ws6c{word-spacing:14.824349px;}
.ws8{word-spacing:14.884124px;}
.ws80{word-spacing:14.942400px;}
.ws34{word-spacing:14.947091px;}
.ws37{word-spacing:15.001065px;}
.ws51{word-spacing:15.003676px;}
.ws45{word-spacing:15.063451px;}
.ws6d{word-spacing:15.123227px;}
.ws6e{word-spacing:15.242778px;}
.ws5d{word-spacing:15.278746px;}
.ws4f{word-spacing:16.258391px;}
.ws7d{word-spacing:16.378514px;}
.ws93{word-spacing:16.438290px;}
.ws5b{word-spacing:16.492897px;}
.ws4b{word-spacing:16.524415px;}
.ws58{word-spacing:16.530415px;}
.ws46{word-spacing:16.557841px;}
.ws3e{word-spacing:16.824510px;}
.ws8d{word-spacing:17.095822px;}
.ws47{word-spacing:17.861069px;}
.ws81{word-spacing:18.052231px;}
.ws94{word-spacing:18.709763px;}
.ws95{word-spacing:19.550547px;}
.ws97{word-spacing:30.820299px;}
.ws8c{word-spacing:31.979946px;}
.ws8e{word-spacing:58.545904px;}
.ws98{word-spacing:59.712592px;}
.ws16{word-spacing:71.659469px;}
.ws5f{word-spacing:673.307952px;}
._2b{margin-left:-24.448220px;}
._2c{margin-left:-19.606397px;}
._4{margin-left:-9.095710px;}
._31{margin-left:-7.651277px;}
._14{margin-left:-6.635092px;}
._6{margin-left:-4.782048px;}
._f{margin-left:-3.646312px;}
._7{margin-left:-2.391024px;}
._3{margin-left:-1.082228px;}
._1{width:1.735310px;}
._5{width:3.557845px;}
._0{width:4.960025px;}
._2{width:6.148510px;}
._d{width:14.113309px;}
._12{width:15.960085px;}
._a{width:17.992456px;}
._9{width:19.427070px;}
._16{width:20.861684px;}
._8{width:22.057196px;}
._11{width:23.612208px;}
._c{width:25.105752px;}
._30{width:26.121937px;}
._b{width:27.317449px;}
._15{width:29.887800px;}
._10{width:32.171808px;}
._1a{width:33.206068px;}
._e{width:34.550297px;}
._19{width:43.170538px;}
._32{width:46.624968px;}
._2f{width:52.961182px;}
._2d{width:58.457369px;}
._13{width:59.775600px;}
._2e{width:60.963901px;}
._17{width:71.731200px;}
._28{width:83.566289px;}
._26{width:103.531339px;}
._1f{width:106.759222px;}
._21{width:120.148956px;}
._1d{width:173.229689px;}
._1b{width:205.634331px;}
._23{width:216.447448px;}
._27{width:250.220662px;}
._24{width:256.138446px;}
._20{width:272.756063px;}
._25{width:332.644947px;}
._22{width:335.879096px;}
._29{width:339.943837px;}
._1e{width:428.059339px;}
._1c{width:612.699900px;}
._18{width:1069.474637px;}
._2a{width:1934.165462px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs5{font-size:57.384600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:82.633800px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5b{bottom:63.168000px;}
.y2a{bottom:108.000000px;}
.y29{bottom:122.944500px;}
.y5a{bottom:124.363500px;}
.y28{bottom:128.658000px;}
.y85{bottom:129.904500px;}
.ydd{bottom:132.583500px;}
.yfb{bottom:140.727000px;}
.yb4{bottom:148.947000px;}
.y84{bottom:151.809000px;}
.y1c4{bottom:153.268500px;}
.y27{bottom:153.565500px;}
.y122{bottom:154.326000px;}
.y59{bottom:154.473000px;}
.y10f{bottom:157.090500px;}
.yb3{bottom:165.310500px;}
.y26{bottom:169.929000px;}
.y10e{bottom:173.454000px;}
.ydc{bottom:173.529000px;}
.y83{bottom:173.713500px;}
.y198{bottom:176.047500px;}
.yb2{bottom:181.674000px;}
.y25{bottom:186.292500px;}
.y1e6{bottom:189.817500px;}
.ydb{bottom:189.892500px;}
.y1c3{bottom:190.339500px;}
.y121{bottom:190.566000px;}
.y58{bottom:191.527500px;}
.yb1{bottom:198.037500px;}
.y82{bottom:204.676500px;}
.y1e5{bottom:206.182500px;}
.y148{bottom:206.256000px;}
.y197{bottom:206.896500px;}
.y120{bottom:206.929500px;}
.y57{bottom:207.891000px;}
.y24{bottom:210.874500px;}
.yb0{bottom:214.401000px;}
.yda{bottom:214.476000px;}
.y1c2{bottom:214.923000px;}
.y81{bottom:221.040000px;}
.y1e4{bottom:222.546000px;}
.y147{bottom:222.619500px;}
.y56{bottom:224.254500px;}
.y23{bottom:227.239500px;}
.y196{bottom:229.815000px;}
.yaf{bottom:230.764500px;}
.yd9{bottom:230.839500px;}
.y11e{bottom:231.270000px;}
.y1c1{bottom:231.286500px;}
.y80{bottom:237.405000px;}
.y1e3{bottom:238.909500px;}
.y146{bottom:238.984500px;}
.y11f{bottom:239.907000px;}
.y55{bottom:240.618000px;}
.y22{bottom:243.603000px;}
.yfa{bottom:244.363500px;}
.yae{bottom:247.128000px;}
.y1c0{bottom:247.650000px;}
.y195{bottom:252.735000px;}
.y1e2{bottom:255.273000px;}
.yd8{bottom:255.421500px;}
.y54{bottom:256.981500px;}
.y11d{bottom:258.619500px;}
.y7f{bottom:261.987000px;}
.y10d{bottom:263.491500px;}
.y145{bottom:263.566500px;}
.y21{bottom:268.185000px;}
.yd7{bottom:271.786500px;}
.y1bf{bottom:272.233500px;}
.y53{bottom:273.345000px;}
.yad{bottom:277.090500px;}
.y144{bottom:279.930000px;}
.yf9{bottom:280.972500px;}
.y11c{bottom:283.203000px;}
.y16e{bottom:283.213500px;}
.y194{bottom:283.584000px;}
.y20{bottom:284.548500px;}
.y7e{bottom:286.570500px;}
.y10c{bottom:288.075000px;}
.y1be{bottom:288.597000px;}
.y1e1{bottom:291.387000px;}
.yd6{bottom:296.368500px;}
.y11b{bottom:299.566500px;}
.y1f{bottom:300.912000px;}
.y7d{bottom:302.934000px;}
.y52{bottom:303.454500px;}
.y10b{bottom:304.438500px;}
.y143{bottom:304.513500px;}
.y1bd{bottom:304.960500px;}
.yf8{bottom:305.554500px;}
.yd5{bottom:312.732000px;}
.yac{bottom:312.907500px;}
.y1e{bottom:317.275500px;}
.y193{bottom:318.904500px;}
.y7c{bottom:319.297500px;}
.y10a{bottom:320.802000px;}
.y142{bottom:320.877000px;}
.y1bc{bottom:321.324000px;}
.yf7{bottom:321.918000px;}
.yd4{bottom:329.095500px;}
.yab{bottom:329.271000px;}
.y11a{bottom:329.529000px;}
.y1d{bottom:333.640500px;}
.y16d{bottom:335.209500px;}
.y7b{bottom:335.661000px;}
.y1e0{bottom:336.384000px;}
.y109{bottom:337.165500px;}
.y141{bottom:337.240500px;}
.y51{bottom:340.509000px;}
.yd3{bottom:345.459000px;}
.yaa{bottom:345.634500px;}
.y1bb{bottom:345.906000px;}
.yf6{bottom:346.501500px;}
.y192{bottom:349.753500px;}
.y1c{bottom:350.004000px;}
.y16c{bottom:351.573000px;}
.y7a{bottom:352.024500px;}
.y1df{bottom:352.749000px;}
.y108{bottom:353.529000px;}
.y140{bottom:353.604000px;}
.ya9{bottom:361.998000px;}
.y1ba{bottom:362.271000px;}
.yf5{bottom:362.865000px;}
.y1b{bottom:366.367500px;}
.y16b{bottom:367.936500px;}
.y79{bottom:368.388000px;}
.y13f{bottom:369.967500px;}
.yd2{bottom:370.042500px;}
.y191{bottom:372.672000px;}
.y119{bottom:374.286000px;}
.y50{bottom:375.399000px;}
.y1de{bottom:377.331000px;}
.y107{bottom:378.112500px;}
.ya8{bottom:378.361500px;}
.y1b9{bottom:378.634500px;}
.yf4{bottom:379.228500px;}
.y1a{bottom:382.731000px;}
.yd1{bottom:386.406000px;}
.y16a{bottom:392.520000px;}
.y78{bottom:392.971500px;}
.y1dd{bottom:393.694500px;}
.y106{bottom:394.476000px;}
.y13e{bottom:394.551000px;}
.ya7{bottom:394.726500px;}
.y1b8{bottom:394.998000px;}
.y190{bottom:395.590500px;}
.yf3{bottom:395.592000px;}
.yd0{bottom:402.769500px;}
.y169{bottom:408.883500px;}
.y77{bottom:409.335000px;}
.y13d{bottom:410.914500px;}
.y1b7{bottom:411.361500px;}
.y1dc{bottom:418.278000px;}
.y4f{bottom:418.356000px;}
.y18f{bottom:418.510500px;}
.y19{bottom:418.750500px;}
.ycf{bottom:419.133000px;}
.ya6{bottom:419.308500px;}
.y168{bottom:425.247000px;}
.yf2{bottom:425.890500px;}
.y1b6{bottom:427.725000px;}
.y118{bottom:433.803000px;}
.y1db{bottom:434.641500px;}
.y4e{bottom:434.719500px;}
.y13c{bottom:435.496500px;}
.ya5{bottom:435.672000px;}
.y76{bottom:439.297500px;}
.y167{bottom:441.610500px;}
.yce{bottom:443.716500px;}
.y1b5{bottom:444.088500px;}
.y18e{bottom:449.359500px;}
.y4d{bottom:451.083000px;}
.y13b{bottom:451.860000px;}
.ya4{bottom:452.035500px;}
.y166{bottom:457.974000px;}
.y1b4{bottom:460.452000px;}
.y18{bottom:463.590000px;}
.y1da{bottom:463.605000px;}
.yf1{bottom:466.836000px;}
.ya3{bottom:468.399000px;}
.ycd{bottom:473.679000px;}
.y75{bottom:475.591500px;}
.y4c{bottom:475.666500px;}
.y13a{bottom:476.443500px;}
.y1b3{bottom:476.815500px;}
.y17{bottom:479.953500px;}
.y165{bottom:482.557500px;}
.yf0{bottom:483.199500px;}
.y18d{bottom:484.680000px;}
.ya2{bottom:484.762500px;}
.y74{bottom:491.955000px;}
.y4b{bottom:492.030000px;}
.y1d9{bottom:492.570000px;}
.y139{bottom:492.807000px;}
.y16{bottom:496.317000px;}
.y164{bottom:498.921000px;}
.y18c{bottom:501.043500px;}
.y1b2{bottom:501.399000px;}
.yef{bottom:507.783000px;}
.ya1{bottom:509.346000px;}
.ycc{bottom:509.691000px;}
.y15{bottom:512.680500px;}
.y163{bottom:515.284500px;}
.y73{bottom:516.538500px;}
.y4a{bottom:516.613500px;}
.y138{bottom:517.389000px;}
.y1b1{bottom:517.762500px;}
.y18b{bottom:525.625500px;}
.ya0{bottom:525.709500px;}
.ycb{bottom:526.054500px;}
.y14{bottom:529.044000px;}
.y1d8{bottom:529.647000px;}
.y162{bottom:531.648000px;}
.y72{bottom:532.902000px;}
.y49{bottom:532.977000px;}
.y1b0{bottom:534.126000px;}
.yee{bottom:538.080000px;}
.y18a{bottom:541.989000px;}
.yca{bottom:542.418000px;}
.y13{bottom:545.407500px;}
.y1d7{bottom:546.010500px;}
.y71{bottom:549.265500px;}
.y117{bottom:550.236000px;}
.y137{bottom:551.634000px;}
.y9f{bottom:555.672000px;}
.y48{bottom:557.559000px;}
.y189{bottom:558.352500px;}
.y1af{bottom:558.708000px;}
.y12{bottom:561.771000px;}
.y116{bottom:565.179000px;}
.y70{bottom:565.629000px;}
.y161{bottom:567.733500px;}
.yc9{bottom:570.726000px;}
.y47{bottom:573.922500px;}
.y188{bottom:574.716000px;}
.y1d6{bottom:574.975500px;}
.y11{bottom:578.134500px;}
.yed{bottom:579.027000px;}
.y6f{bottom:581.992500px;}
.y1ae{bottom:583.291500px;}
.y46{bottom:590.286000px;}
.y187{bottom:591.079500px;}
.y9e{bottom:591.489000px;}
.yec{bottom:595.390500px;}
.y10{bottom:598.486500px;}
.y136{bottom:599.023500px;}
.y1ad{bottom:599.655000px;}
.y1d5{bottom:603.939000px;}
.y6e{bottom:606.576000px;}
.y45{bottom:606.649500px;}
.y9d{bottom:607.852500px;}
.yc8{bottom:611.673000px;}
.yf{bottom:614.851500px;}
.y135{bottom:615.387000px;}
.y1ac{bottom:616.018500px;}
.y160{bottom:619.729500px;}
.y6d{bottom:622.939500px;}
.y44{bottom:623.014500px;}
.y9c{bottom:624.216000px;}
.yeb{bottom:625.687500px;}
.y186{bottom:626.400000px;}
.ye{bottom:631.215000px;}
.y134{bottom:631.750500px;}
.y15f{bottom:636.093000px;}
.y43{bottom:639.378000px;}
.yc7{bottom:639.981000px;}
.y9b{bottom:640.579500px;}
.y1ab{bottom:640.602000px;}
.y1d4{bottom:641.016000px;}
.y185{bottom:642.763500px;}
.y6c{bottom:647.521500px;}
.yd{bottom:647.578500px;}
.y133{bottom:648.114000px;}
.y9a{bottom:656.943000px;}
.y1aa{bottom:656.965500px;}
.y1d3{bottom:657.379500px;}
.y184{bottom:659.127000px;}
.y15e{bottom:660.676500px;}
.y6b{bottom:663.885000px;}
.yc{bottom:663.942000px;}
.y42{bottom:663.960000px;}
.y132{bottom:664.477500px;}
.yea{bottom:672.349500px;}
.y99{bottom:673.306500px;}
.y1a9{bottom:673.329000px;}
.y1d2{bottom:673.743000px;}
.y114{bottom:674.365500px;}
.y15d{bottom:677.040000px;}
.y115{bottom:680.223000px;}
.y41{bottom:680.323500px;}
.yc6{bottom:680.928000px;}
.yb{bottom:684.294000px;}
.y183{bottom:687.333000px;}
.y6a{bottom:688.468500px;}
.y131{bottom:689.061000px;}
.y113{bottom:689.308500px;}
.y98{bottom:689.671500px;}
.y1a8{bottom:689.692500px;}
.y15c{bottom:693.403500px;}
.y40{bottom:696.687000px;}
.yc5{bottom:697.291500px;}
.ya{bottom:700.657500px;}
.y69{bottom:704.832000px;}
.y130{bottom:705.424500px;}
.y97{bottom:706.035000px;}
.y1a7{bottom:706.056000px;}
.y15b{bottom:709.767000px;}
.y1d1{bottom:710.821500px;}
.y3f{bottom:713.050500px;}
.ye9{bottom:713.295000px;}
.yc4{bottom:713.655000px;}
.y1f7{bottom:714.769500px;}
.y9{bottom:717.021000px;}
.y68{bottom:721.195500px;}
.y12f{bottom:721.788000px;}
.y96{bottom:722.398500px;}
.y182{bottom:722.652000px;}
.y1d0{bottom:727.185000px;}
.y1f6{bottom:731.133000px;}
.y8{bottom:733.384500px;}
.y15a{bottom:734.350500px;}
.y1a6{bottom:734.961000px;}
.y67{bottom:737.559000px;}
.y3e{bottom:737.634000px;}
.y12e{bottom:738.151500px;}
.yc3{bottom:738.238500px;}
.y95{bottom:738.762000px;}
.y181{bottom:739.015500px;}
.ye8{bottom:747.901500px;}
.y7{bottom:749.748000px;}
.y159{bottom:750.714000px;}
.y1f5{bottom:753.474000px;}
.y3d{bottom:753.997500px;}
.y12d{bottom:754.515000px;}
.yc2{bottom:754.602000px;}
.y94{bottom:755.125500px;}
.y180{bottom:755.380500px;}
.y66{bottom:762.142500px;}
.y1cf{bottom:764.262000px;}
.y158{bottom:767.077500px;}
.y1f4{bottom:769.837500px;}
.yc1{bottom:770.965500px;}
.y93{bottom:771.489000px;}
.y17f{bottom:771.744000px;}
.y1a5{bottom:772.032000px;}
.ye7{bottom:774.286500px;}
.y65{bottom:778.506000px;}
.y3c{bottom:778.581000px;}
.y6{bottom:783.303000px;}
.y157{bottom:783.441000px;}
.yc0{bottom:787.329000px;}
.y17e{bottom:788.107500px;}
.y1a4{bottom:788.395500px;}
.y12c{bottom:788.758500px;}
.y1f3{bottom:792.180000px;}
.y3b{bottom:794.944500px;}
.y112{bottom:795.624000px;}
.y1ce{bottom:795.892500px;}
.y92{bottom:796.072500px;}
.y156{bottom:799.804500px;}
.ye6{bottom:800.673000px;}
.y64{bottom:803.088000px;}
.ybf{bottom:803.692500px;}
.y17d{bottom:804.471000px;}
.y1f2{bottom:808.543500px;}
.y3a{bottom:811.308000px;}
.y155{bottom:816.168000px;}
.y1a3{bottom:819.319500px;}
.y63{bottom:819.451500px;}
.ybe{bottom:820.056000px;}
.y1cd{bottom:820.374000px;}
.y91{bottom:820.654500px;}
.y17b{bottom:822.940500px;}
.y5{bottom:823.425000px;}
.ye5{bottom:827.059500px;}
.y39{bottom:827.671500px;}
.y1f1{bottom:830.884500px;}
.y12b{bottom:836.149500px;}
.y17c{bottom:836.557500px;}
.y90{bottom:837.018000px;}
.y154{bottom:840.751500px;}
.y38{bottom:844.035000px;}
.ybd{bottom:844.639500px;}
.y1cc{bottom:844.854000px;}
.y12a{bottom:852.513000px;}
.y1f0{bottom:853.225500px;}
.ye4{bottom:853.446000px;}
.y17a{bottom:856.897500px;}
.y153{bottom:857.115000px;}
.y1a2{bottom:858.408000px;}
.y37{bottom:860.398500px;}
.ybc{bottom:861.003000px;}
.y8f{bottom:861.601500px;}
.y179{bottom:862.978500px;}
.y62{bottom:868.617000px;}
.y129{bottom:868.876500px;}
.y1cb{bottom:869.335500px;}
.y1ef{bottom:869.589000px;}
.y152{bottom:873.478500px;}
.y1a1{bottom:874.771500px;}
.ybb{bottom:877.366500px;}
.y8e{bottom:877.965000px;}
.y178{bottom:879.342000px;}
.ye3{bottom:879.832500px;}
.y4{bottom:883.159500px;}
.y36{bottom:884.982000px;}
.y128{bottom:885.240000px;}
.y151{bottom:889.842000px;}
.y1ee{bottom:891.930000px;}
.yba{bottom:893.730000px;}
.y1ca{bottom:893.817000px;}
.y8d{bottom:894.328500px;}
.y177{bottom:895.705500px;}
.y1a0{bottom:899.353500px;}
.y3{bottom:899.523000px;}
.y35{bottom:901.345500px;}
.y127{bottom:901.603500px;}
.y111{bottom:902.635500px;}
.y150{bottom:906.205500px;}
.y1ed{bottom:908.293500px;}
.yb9{bottom:910.093500px;}
.ye2{bottom:910.129500px;}
.y176{bottom:912.069000px;}
.y105{bottom:913.075500px;}
.y19f{bottom:915.717000px;}
.y34{bottom:917.709000px;}
.y126{bottom:917.967000px;}
.y14f{bottom:922.569000px;}
.y8c{bottom:923.965500px;}
.y1c9{bottom:925.447500px;}
.y61{bottom:925.927500px;}
.yb8{bottom:926.457000px;}
.y175{bottom:928.432500px;}
.y1ec{bottom:930.634500px;}
.y19e{bottom:932.082000px;}
.y33{bottom:934.072500px;}
.y104{bottom:936.441000px;}
.y14e{bottom:938.932500px;}
.y60{bottom:942.291000px;}
.yb7{bottom:942.820500px;}
.y174{bottom:944.796000px;}
.y1eb{bottom:946.999500px;}
.y19d{bottom:948.445500px;}
.y32{bottom:950.436000px;}
.ye1{bottom:951.076500px;}
.y125{bottom:952.212000px;}
.y103{bottom:952.804500px;}
.y8b{bottom:953.601000px;}
.y14d{bottom:955.296000px;}
.y5f{bottom:958.654500px;}
.y1c8{bottom:962.524500px;}
.y31{bottom:966.799500px;}
.ye0{bottom:967.440000px;}
.y102{bottom:969.168000px;}
.y1ea{bottom:969.340500px;}
.y173{bottom:969.379500px;}
.y8a{bottom:969.964500px;}
.yb6{bottom:972.783000px;}
.y5e{bottom:975.018000px;}
.y1c7{bottom:978.888000px;}
.y14c{bottom:979.879500px;}
.y30{bottom:983.163000px;}
.y19c{bottom:985.516500px;}
.y101{bottom:985.531500px;}
.y1e9{bottom:985.704000px;}
.y172{bottom:985.743000px;}
.y89{bottom:986.328000px;}
.y5d{bottom:991.383000px;}
.y2{bottom:991.944000px;}
.y1c6{bottom:995.251500px;}
.y14b{bottom:996.243000px;}
.y124{bottom:999.601500px;}
.y100{bottom:1001.895000px;}
.ydf{bottom:1002.031500px;}
.y171{bottom:1002.106500px;}
.y88{bottom:1002.693000px;}
.y19a{bottom:1006.321500px;}
.yb5{bottom:1006.777500px;}
.y2f{bottom:1007.746500px;}
.y1e8{bottom:1008.045000px;}
.y110{bottom:1010.806500px;}
.y1c5{bottom:1011.615000px;}
.y14a{bottom:1012.606500px;}
.y123{bottom:1015.965000px;}
.yff{bottom:1018.258500px;}
.yde{bottom:1018.395000px;}
.y170{bottom:1018.470000px;}
.y87{bottom:1019.056500px;}
.y19b{bottom:1019.937000px;}
.y1{bottom:1021.831500px;}
.y2e{bottom:1024.110000px;}
.y149{bottom:1028.970000px;}
.y1e7{bottom:1030.386000px;}
.y5c{bottom:1032.328500px;}
.yfe{bottom:1034.623500px;}
.y16f{bottom:1034.833500px;}
.y86{bottom:1035.420000px;}
.y199{bottom:1040.277000px;}
.y2d{bottom:1048.692000px;}
.yfd{bottom:1050.987000px;}
.y2c{bottom:1065.055500px;}
.yfc{bottom:1067.947500px;}
.y2b{bottom:1122.739500px;}
.hd{height:14.679331px;}
.h5{height:16.677504px;}
.hb{height:29.457331px;}
.h6{height:37.013299px;}
.h9{height:40.348800px;}
.h3{height:41.125613px;}
.h2{height:41.484266px;}
.h8{height:42.799330px;}
.h7{height:44.831700px;}
.h4{height:49.781453px;}
.ha{height:61.343299px;}
.hc{height:64.041331px;}
.h1{height:71.065171px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x59{left:106.251000px;}
.x8{left:107.536500px;}
.x1{left:108.645000px;}
.x64{left:115.471500px;}
.x38{left:116.967000px;}
.x9{left:125.733000px;}
.x3f{left:127.363500px;}
.xa{left:132.210000px;}
.x65{left:140.368500px;}
.x2f{left:143.905500px;}
.x2c{left:147.598500px;}
.x11{left:149.095500px;}
.x7{left:161.799000px;}
.x2d{left:163.152000px;}
.x1f{left:165.120000px;}
.x4b{left:174.067500px;}
.x45{left:178.171500px;}
.x4c{left:189.603000px;}
.x5c{left:208.207500px;}
.x28{left:211.890000px;}
.x5d{left:225.222000px;}
.x29{left:232.180500px;}
.x40{left:234.544500px;}
.x2{left:236.845500px;}
.x39{left:242.344500px;}
.x19{left:252.085500px;}
.x27{left:255.364500px;}
.x1a{left:263.293500px;}
.x51{left:268.639500px;}
.x4f{left:277.830000px;}
.x46{left:279.231000px;}
.xf{left:285.480000px;}
.x50{left:289.293000px;}
.x4{left:318.000000px;}
.x52{left:328.398000px;}
.x62{left:332.652000px;}
.x60{left:338.311500px;}
.x10{left:348.979500px;}
.x24{left:354.541500px;}
.x20{left:365.911500px;}
.x56{left:371.697000px;}
.x63{left:372.718500px;}
.x57{left:379.999500px;}
.x25{left:384.127500px;}
.x21{left:386.341500px;}
.x41{left:388.851000px;}
.x1d{left:391.612500px;}
.x58{left:395.134500px;}
.x61{left:398.488500px;}
.x5{left:404.014500px;}
.x2a{left:405.591000px;}
.x12{left:407.394000px;}
.x14{left:409.296000px;}
.x1e{left:410.658000px;}
.x2b{left:412.381500px;}
.x6{left:415.944000px;}
.x3{left:419.967000px;}
.x3a{left:422.145000px;}
.x15{left:424.441500px;}
.x3e{left:427.461000px;}
.x30{left:429.381000px;}
.x1b{left:434.362500px;}
.x3d{left:436.210500px;}
.x26{left:438.984000px;}
.x31{left:441.195000px;}
.x43{left:442.198500px;}
.x42{left:445.939500px;}
.x1c{left:448.743000px;}
.x55{left:450.967500px;}
.xe{left:455.263500px;}
.x32{left:464.538000px;}
.x16{left:467.181000px;}
.x33{left:471.753000px;}
.x2e{left:475.071000px;}
.x34{left:479.494500px;}
.x35{left:486.709500px;}
.x44{left:493.896000px;}
.x13{left:503.655000px;}
.x5e{left:524.512500px;}
.x4d{left:535.819500px;}
.x4e{left:555.669000px;}
.x17{left:561.513000px;}
.x18{left:576.660000px;}
.x47{left:585.438000px;}
.x53{left:590.628000px;}
.xb{left:593.329500px;}
.x48{left:607.552500px;}
.xc{left:613.867500px;}
.x5f{left:625.584000px;}
.x36{left:642.253500px;}
.x54{left:650.386500px;}
.x49{left:658.137000px;}
.xd{left:678.805500px;}
.x3b{left:691.890000px;}
.x5a{left:694.386000px;}
.x3c{left:703.377000px;}
.x22{left:726.621000px;}
.x37{left:734.785500px;}
.x23{left:738.666000px;}
.x5b{left:757.876500px;}
.x4a{left:770.938500px;}
@media print{
.v7{vertical-align:-13.136000pt;}
.v2{vertical-align:-7.968000pt;}
.v4{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:21.626667pt;}
.v6{vertical-align:25.397333pt;}
.v5{vertical-align:30.741333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000278pt;}
.ls31{letter-spacing:0.000576pt;}
.ls44{letter-spacing:0.001696pt;}
.ls35{letter-spacing:0.001995pt;}
.ls21{letter-spacing:0.002387pt;}
.lsc{letter-spacing:0.002906pt;}
.ls2d{letter-spacing:0.003514pt;}
.ls20{letter-spacing:0.003733pt;}
.ls48{letter-spacing:0.004349pt;}
.ls40{letter-spacing:0.004465pt;}
.ls29{letter-spacing:0.004980pt;}
.ls4c{letter-spacing:0.407455pt;}
.ls2a{letter-spacing:0.894993pt;}
.ls14{letter-spacing:0.900327pt;}
.lsa{letter-spacing:2.635446pt;}
.ls4b{letter-spacing:2.651242pt;}
.ls26{letter-spacing:2.652911pt;}
.ls49{letter-spacing:2.654383pt;}
.ls30{letter-spacing:2.656576pt;}
.lsb{letter-spacing:2.656693pt;}
.ls7{letter-spacing:3.185843pt;}
.ls24{letter-spacing:3.550993pt;}
.ls12{letter-spacing:3.556327pt;}
.ls45{letter-spacing:3.800296pt;}
.ls11{letter-spacing:4.167686pt;}
.ls13{letter-spacing:4.173019pt;}
.ls1{letter-spacing:4.554041pt;}
.ls5{letter-spacing:4.587934pt;}
.ls2{letter-spacing:4.590533pt;}
.ls3{letter-spacing:4.592459pt;}
.ls4{letter-spacing:4.593267pt;}
.ls0{letter-spacing:4.594617pt;}
.ls34{letter-spacing:5.718992pt;}
.ls3a{letter-spacing:7.376277pt;}
.ls37{letter-spacing:7.381610pt;}
.ls32{letter-spacing:7.779613pt;}
.ls2e{letter-spacing:8.379092pt;}
.ls1f{letter-spacing:8.851733pt;}
.ls23{letter-spacing:8.855412pt;}
.ls36{letter-spacing:8.856239pt;}
.ls1b{letter-spacing:8.857067pt;}
.ls4f{letter-spacing:11.803145pt;}
.ls4e{letter-spacing:11.804745pt;}
.ls39{letter-spacing:11.805573pt;}
.ls42{letter-spacing:11.806400pt;}
.ls1e{letter-spacing:11.808479pt;}
.ls1d{letter-spacing:11.810387pt;}
.ls6{letter-spacing:13.281867pt;}
.ls28{letter-spacing:13.282387pt;}
.ls18{letter-spacing:13.287720pt;}
.ls41{letter-spacing:14.460911pt;}
.ls4d{letter-spacing:14.466245pt;}
.ls4a{letter-spacing:14.756105pt;}
.ls3d{letter-spacing:14.756465pt;}
.ls1a{letter-spacing:14.757812pt;}
.ls27{letter-spacing:14.759412pt;}
.lsf{letter-spacing:14.759467pt;}
.ls1c{letter-spacing:14.759720pt;}
.ls22{letter-spacing:14.760239pt;}
.ls3e{letter-spacing:14.762318pt;}
.ls43{letter-spacing:15.938245pt;}
.ls9{letter-spacing:15.941348pt;}
.ls10{letter-spacing:17.410245pt;}
.ls2f{letter-spacing:17.413909pt;}
.lse{letter-spacing:17.415578pt;}
.ls47{letter-spacing:17.810079pt;}
.ls46{letter-spacing:17.812105pt;}
.ls2b{letter-spacing:18.927925pt;}
.ls3f{letter-spacing:19.078836pt;}
.ls19{letter-spacing:20.556169pt;}
.ls2c{letter-spacing:20.656046pt;}
.ls3c{letter-spacing:21.413812pt;}
.lsd{letter-spacing:22.542280pt;}
.ls33{letter-spacing:23.614824pt;}
.ls3b{letter-spacing:24.069909pt;}
.ls17{letter-spacing:67.890079pt;}
.ls15{letter-spacing:992.327412pt;}
.ls16{letter-spacing:1017.724745pt;}
.ls25{letter-spacing:1118.434079pt;}
.ws4a{word-spacing:-44.313645pt;}
.ws62{word-spacing:-44.260511pt;}
.ws61{word-spacing:-38.392607pt;}
.ws52{word-spacing:-38.374400pt;}
.ws55{word-spacing:-38.362652pt;}
.ws64{word-spacing:-38.354960pt;}
.ws49{word-spacing:-34.611401pt;}
.ws63{word-spacing:-28.118362pt;}
.ws28{word-spacing:-25.791179pt;}
.ws96{word-spacing:-25.738045pt;}
.ws57{word-spacing:-23.601899pt;}
.ws56{word-spacing:-23.596566pt;}
.ws2{word-spacing:-22.953867pt;}
.ws4{word-spacing:-22.917107pt;}
.ws7c{word-spacing:-19.854916pt;}
.ws54{word-spacing:-19.844254pt;}
.ws1{word-spacing:-18.363067pt;}
.ws38{word-spacing:-13.283467pt;}
.ws1f{word-spacing:-2.656693pt;}
.ws88{word-spacing:-2.231622pt;}
.ws48{word-spacing:-2.178489pt;}
.ws3f{word-spacing:-2.019087pt;}
.ws42{word-spacing:-1.806551pt;}
.ws2e{word-spacing:-1.647150pt;}
.ws9d{word-spacing:-1.594016pt;}
.ws33{word-spacing:-1.540882pt;}
.ws2d{word-spacing:-1.487748pt;}
.ws99{word-spacing:-1.481490pt;}
.ws9b{word-spacing:-1.477844pt;}
.ws9a{word-spacing:-1.476244pt;}
.ws31{word-spacing:-1.381481pt;}
.ws43{word-spacing:-1.275213pt;}
.ws21{word-spacing:-1.115811pt;}
.ws39{word-spacing:-0.903276pt;}
.ws19{word-spacing:-0.797008pt;}
.ws3d{word-spacing:-0.743874pt;}
.ws5a{word-spacing:-0.584473pt;}
.ws59{word-spacing:-0.531339pt;}
.ws40{word-spacing:-0.478205pt;}
.ws2b{word-spacing:-0.371937pt;}
.ws29{word-spacing:-0.318803pt;}
.ws10{word-spacing:-0.265669pt;}
.ws22{word-spacing:-0.212535pt;}
.wsc{word-spacing:-0.159402pt;}
.wsd{word-spacing:-0.106268pt;}
.ws9f{word-spacing:-0.063761pt;}
.ws9{word-spacing:-0.053134pt;}
.wsb{word-spacing:-0.051009pt;}
.ws4c{word-spacing:-0.037194pt;}
.ws1c{word-spacing:-0.014309pt;}
.ws65{word-spacing:-0.004930pt;}
.ws92{word-spacing:-0.004364pt;}
.ws27{word-spacing:-0.001984pt;}
.ws35{word-spacing:-0.000607pt;}
.wsa{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.018471pt;}
.ws26{word-spacing:0.053134pt;}
.ws17{word-spacing:0.106268pt;}
.ws0{word-spacing:0.146905pt;}
.ws15{word-spacing:0.159402pt;}
.ws12{word-spacing:0.212535pt;}
.wsf{word-spacing:0.265669pt;}
.ws3a{word-spacing:0.318803pt;}
.ws20{word-spacing:0.371937pt;}
.ws83{word-spacing:0.425071pt;}
.ws4e{word-spacing:0.531339pt;}
.wse{word-spacing:0.584473pt;}
.ws75{word-spacing:0.637606pt;}
.ws44{word-spacing:0.690740pt;}
.ws2f{word-spacing:0.743874pt;}
.ws30{word-spacing:0.797008pt;}
.ws6f{word-spacing:0.850142pt;}
.ws23{word-spacing:0.903276pt;}
.ws36{word-spacing:0.956410pt;}
.ws4d{word-spacing:1.168945pt;}
.ws3b{word-spacing:1.222079pt;}
.ws66{word-spacing:1.275213pt;}
.ws7e{word-spacing:1.328347pt;}
.ws70{word-spacing:1.434614pt;}
.ws77{word-spacing:1.487748pt;}
.ws91{word-spacing:1.540882pt;}
.ws32{word-spacing:1.594016pt;}
.ws50{word-spacing:1.700284pt;}
.ws11{word-spacing:1.806551pt;}
.ws1a{word-spacing:1.912819pt;}
.ws72{word-spacing:1.965953pt;}
.ws8b{word-spacing:2.125355pt;}
.ws78{word-spacing:2.178489pt;}
.ws86{word-spacing:2.231622pt;}
.ws76{word-spacing:2.284756pt;}
.ws6a{word-spacing:2.337890pt;}
.ws73{word-spacing:2.391024pt;}
.ws9e{word-spacing:2.444158pt;}
.ws7b{word-spacing:2.497292pt;}
.ws41{word-spacing:2.603559pt;}
.ws1d{word-spacing:2.656693pt;}
.ws67{word-spacing:2.762961pt;}
.ws82{word-spacing:2.816095pt;}
.ws68{word-spacing:2.975497pt;}
.ws85{word-spacing:3.081764pt;}
.ws8f{word-spacing:3.241166pt;}
.ws7f{word-spacing:3.400567pt;}
.ws7a{word-spacing:3.453701pt;}
.ws69{word-spacing:3.666237pt;}
.ws5c{word-spacing:3.878772pt;}
.ws71{word-spacing:3.931906pt;}
.ws9c{word-spacing:3.985040pt;}
.ws24{word-spacing:4.038174pt;}
.ws1b{word-spacing:4.208230pt;}
.ws6b{word-spacing:4.516379pt;}
.ws14{word-spacing:4.622646pt;}
.ws89{word-spacing:4.675780pt;}
.ws2c{word-spacing:4.782048pt;}
.ws18{word-spacing:4.835182pt;}
.ws79{word-spacing:5.100851pt;}
.wsa1{word-spacing:5.844326pt;}
.ws25{word-spacing:5.950993pt;}
.ws90{word-spacing:6.322930pt;}
.wsa2{word-spacing:6.641733pt;}
.ws13{word-spacing:7.279340pt;}
.ws5e{word-spacing:8.129536pt;}
.ws7{word-spacing:9.108081pt;}
.ws6{word-spacing:9.135721pt;}
.ws3{word-spacing:9.298229pt;}
.ws5{word-spacing:10.466963pt;}
.ws87{word-spacing:10.998710pt;}
.ws53{word-spacing:11.742585pt;}
.ws84{word-spacing:11.955120pt;}
.ws60{word-spacing:12.114522pt;}
.wsa0{word-spacing:12.805262pt;}
.ws2a{word-spacing:12.830761pt;}
.ws74{word-spacing:12.875704pt;}
.ws3c{word-spacing:12.939721pt;}
.ws8a{word-spacing:13.070931pt;}
.ws6c{word-spacing:13.177199pt;}
.ws8{word-spacing:13.230333pt;}
.ws80{word-spacing:13.282133pt;}
.ws34{word-spacing:13.286303pt;}
.ws37{word-spacing:13.334280pt;}
.ws51{word-spacing:13.336601pt;}
.ws45{word-spacing:13.389734pt;}
.ws6d{word-spacing:13.442868pt;}
.ws6e{word-spacing:13.549136pt;}
.ws5d{word-spacing:13.581107pt;}
.ws4f{word-spacing:14.451903pt;}
.ws7d{word-spacing:14.558679pt;}
.ws93{word-spacing:14.611813pt;}
.ws5b{word-spacing:14.660353pt;}
.ws4b{word-spacing:14.688369pt;}
.ws58{word-spacing:14.693702pt;}
.ws46{word-spacing:14.718081pt;}
.ws3e{word-spacing:14.955120pt;}
.ws8d{word-spacing:15.196286pt;}
.ws47{word-spacing:15.876506pt;}
.ws81{word-spacing:16.046428pt;}
.ws94{word-spacing:16.630900pt;}
.ws95{word-spacing:17.378264pt;}
.ws97{word-spacing:27.395822pt;}
.ws8c{word-spacing:28.426619pt;}
.ws8e{word-spacing:52.040804pt;}
.ws98{word-spacing:53.077859pt;}
.ws16{word-spacing:63.697306pt;}
.ws5f{word-spacing:598.495957pt;}
._2b{margin-left:-21.731751pt;}
._2c{margin-left:-17.427908pt;}
._4{margin-left:-8.085075pt;}
._31{margin-left:-6.801135pt;}
._14{margin-left:-5.897859pt;}
._6{margin-left:-4.250709pt;}
._f{margin-left:-3.241166pt;}
._7{margin-left:-2.125355pt;}
._3{margin-left:-0.961981pt;}
._1{width:1.542498pt;}
._5{width:3.162529pt;}
._0{width:4.408911pt;}
._2{width:5.465342pt;}
._d{width:12.545164pt;}
._12{width:14.186742pt;}
._a{width:15.993294pt;}
._9{width:17.268507pt;}
._16{width:18.543719pt;}
._8{width:19.606397pt;}
._11{width:20.988629pt;}
._c{width:22.316224pt;}
._30{width:23.219500pt;}
._b{width:24.282177pt;}
._15{width:26.566933pt;}
._10{width:28.597162pt;}
._1a{width:29.516505pt;}
._e{width:30.711375pt;}
._19{width:38.373812pt;}
._32{width:41.444416pt;}
._2f{width:47.076606pt;}
._2d{width:51.962106pt;}
._13{width:53.133867pt;}
._2e{width:54.190134pt;}
._17{width:63.761067pt;}
._28{width:74.281146pt;}
._26{width:92.027857pt;}
._1f{width:94.897086pt;}
._21{width:106.799072pt;}
._1d{width:153.981946pt;}
._1b{width:182.786072pt;}
._23{width:192.397731pt;}
._27{width:222.418366pt;}
._24{width:227.678619pt;}
._20{width:242.449834pt;}
._25{width:295.684397pt;}
._22{width:298.559197pt;}
._29{width:302.172300pt;}
._1e{width:380.497190pt;}
._1c{width:544.622133pt;}
._18{width:950.644122pt;}
._2a{width:1719.258189pt;}
.fs9{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs5{font-size:51.008533pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:73.452267pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:56.149333pt;}
.y2a{bottom:96.000000pt;}
.y29{bottom:109.284000pt;}
.y5a{bottom:110.545333pt;}
.y28{bottom:114.362667pt;}
.y85{bottom:115.470667pt;}
.ydd{bottom:117.852000pt;}
.yfb{bottom:125.090667pt;}
.yb4{bottom:132.397333pt;}
.y84{bottom:134.941333pt;}
.y1c4{bottom:136.238667pt;}
.y27{bottom:136.502667pt;}
.y122{bottom:137.178667pt;}
.y59{bottom:137.309333pt;}
.y10f{bottom:139.636000pt;}
.yb3{bottom:146.942667pt;}
.y26{bottom:151.048000pt;}
.y10e{bottom:154.181333pt;}
.ydc{bottom:154.248000pt;}
.y83{bottom:154.412000pt;}
.y198{bottom:156.486667pt;}
.yb2{bottom:161.488000pt;}
.y25{bottom:165.593333pt;}
.y1e6{bottom:168.726667pt;}
.ydb{bottom:168.793333pt;}
.y1c3{bottom:169.190667pt;}
.y121{bottom:169.392000pt;}
.y58{bottom:170.246667pt;}
.yb1{bottom:176.033333pt;}
.y82{bottom:181.934667pt;}
.y1e5{bottom:183.273333pt;}
.y148{bottom:183.338667pt;}
.y197{bottom:183.908000pt;}
.y120{bottom:183.937333pt;}
.y57{bottom:184.792000pt;}
.y24{bottom:187.444000pt;}
.yb0{bottom:190.578667pt;}
.yda{bottom:190.645333pt;}
.y1c2{bottom:191.042667pt;}
.y81{bottom:196.480000pt;}
.y1e4{bottom:197.818667pt;}
.y147{bottom:197.884000pt;}
.y56{bottom:199.337333pt;}
.y23{bottom:201.990667pt;}
.y196{bottom:204.280000pt;}
.yaf{bottom:205.124000pt;}
.yd9{bottom:205.190667pt;}
.y11e{bottom:205.573333pt;}
.y1c1{bottom:205.588000pt;}
.y80{bottom:211.026667pt;}
.y1e3{bottom:212.364000pt;}
.y146{bottom:212.430667pt;}
.y11f{bottom:213.250667pt;}
.y55{bottom:213.882667pt;}
.y22{bottom:216.536000pt;}
.yfa{bottom:217.212000pt;}
.yae{bottom:219.669333pt;}
.y1c0{bottom:220.133333pt;}
.y195{bottom:224.653333pt;}
.y1e2{bottom:226.909333pt;}
.yd8{bottom:227.041333pt;}
.y54{bottom:228.428000pt;}
.y11d{bottom:229.884000pt;}
.y7f{bottom:232.877333pt;}
.y10d{bottom:234.214667pt;}
.y145{bottom:234.281333pt;}
.y21{bottom:238.386667pt;}
.yd7{bottom:241.588000pt;}
.y1bf{bottom:241.985333pt;}
.y53{bottom:242.973333pt;}
.yad{bottom:246.302667pt;}
.y144{bottom:248.826667pt;}
.yf9{bottom:249.753333pt;}
.y11c{bottom:251.736000pt;}
.y16e{bottom:251.745333pt;}
.y194{bottom:252.074667pt;}
.y20{bottom:252.932000pt;}
.y7e{bottom:254.729333pt;}
.y10c{bottom:256.066667pt;}
.y1be{bottom:256.530667pt;}
.y1e1{bottom:259.010667pt;}
.yd6{bottom:263.438667pt;}
.y11b{bottom:266.281333pt;}
.y1f{bottom:267.477333pt;}
.y7d{bottom:269.274667pt;}
.y52{bottom:269.737333pt;}
.y10b{bottom:270.612000pt;}
.y143{bottom:270.678667pt;}
.y1bd{bottom:271.076000pt;}
.yf8{bottom:271.604000pt;}
.yd5{bottom:277.984000pt;}
.yac{bottom:278.140000pt;}
.y1e{bottom:282.022667pt;}
.y193{bottom:283.470667pt;}
.y7c{bottom:283.820000pt;}
.y10a{bottom:285.157333pt;}
.y142{bottom:285.224000pt;}
.y1bc{bottom:285.621333pt;}
.yf7{bottom:286.149333pt;}
.yd4{bottom:292.529333pt;}
.yab{bottom:292.685333pt;}
.y11a{bottom:292.914667pt;}
.y1d{bottom:296.569333pt;}
.y16d{bottom:297.964000pt;}
.y7b{bottom:298.365333pt;}
.y1e0{bottom:299.008000pt;}
.y109{bottom:299.702667pt;}
.y141{bottom:299.769333pt;}
.y51{bottom:302.674667pt;}
.yd3{bottom:307.074667pt;}
.yaa{bottom:307.230667pt;}
.y1bb{bottom:307.472000pt;}
.yf6{bottom:308.001333pt;}
.y192{bottom:310.892000pt;}
.y1c{bottom:311.114667pt;}
.y16c{bottom:312.509333pt;}
.y7a{bottom:312.910667pt;}
.y1df{bottom:313.554667pt;}
.y108{bottom:314.248000pt;}
.y140{bottom:314.314667pt;}
.ya9{bottom:321.776000pt;}
.y1ba{bottom:322.018667pt;}
.yf5{bottom:322.546667pt;}
.y1b{bottom:325.660000pt;}
.y16b{bottom:327.054667pt;}
.y79{bottom:327.456000pt;}
.y13f{bottom:328.860000pt;}
.yd2{bottom:328.926667pt;}
.y191{bottom:331.264000pt;}
.y119{bottom:332.698667pt;}
.y50{bottom:333.688000pt;}
.y1de{bottom:335.405333pt;}
.y107{bottom:336.100000pt;}
.ya8{bottom:336.321333pt;}
.y1b9{bottom:336.564000pt;}
.yf4{bottom:337.092000pt;}
.y1a{bottom:340.205333pt;}
.yd1{bottom:343.472000pt;}
.y16a{bottom:348.906667pt;}
.y78{bottom:349.308000pt;}
.y1dd{bottom:349.950667pt;}
.y106{bottom:350.645333pt;}
.y13e{bottom:350.712000pt;}
.ya7{bottom:350.868000pt;}
.y1b8{bottom:351.109333pt;}
.y190{bottom:351.636000pt;}
.yf3{bottom:351.637333pt;}
.yd0{bottom:358.017333pt;}
.y169{bottom:363.452000pt;}
.y77{bottom:363.853333pt;}
.y13d{bottom:365.257333pt;}
.y1b7{bottom:365.654667pt;}
.y1dc{bottom:371.802667pt;}
.y4f{bottom:371.872000pt;}
.y18f{bottom:372.009333pt;}
.y19{bottom:372.222667pt;}
.ycf{bottom:372.562667pt;}
.ya6{bottom:372.718667pt;}
.y168{bottom:377.997333pt;}
.yf2{bottom:378.569333pt;}
.y1b6{bottom:380.200000pt;}
.y118{bottom:385.602667pt;}
.y1db{bottom:386.348000pt;}
.y4e{bottom:386.417333pt;}
.y13c{bottom:387.108000pt;}
.ya5{bottom:387.264000pt;}
.y76{bottom:390.486667pt;}
.y167{bottom:392.542667pt;}
.yce{bottom:394.414667pt;}
.y1b5{bottom:394.745333pt;}
.y18e{bottom:399.430667pt;}
.y4d{bottom:400.962667pt;}
.y13b{bottom:401.653333pt;}
.ya4{bottom:401.809333pt;}
.y166{bottom:407.088000pt;}
.y1b4{bottom:409.290667pt;}
.y18{bottom:412.080000pt;}
.y1da{bottom:412.093333pt;}
.yf1{bottom:414.965333pt;}
.ya3{bottom:416.354667pt;}
.ycd{bottom:421.048000pt;}
.y75{bottom:422.748000pt;}
.y4c{bottom:422.814667pt;}
.y13a{bottom:423.505333pt;}
.y1b3{bottom:423.836000pt;}
.y17{bottom:426.625333pt;}
.y165{bottom:428.940000pt;}
.yf0{bottom:429.510667pt;}
.y18d{bottom:430.826667pt;}
.ya2{bottom:430.900000pt;}
.y74{bottom:437.293333pt;}
.y4b{bottom:437.360000pt;}
.y1d9{bottom:437.840000pt;}
.y139{bottom:438.050667pt;}
.y16{bottom:441.170667pt;}
.y164{bottom:443.485333pt;}
.y18c{bottom:445.372000pt;}
.y1b2{bottom:445.688000pt;}
.yef{bottom:451.362667pt;}
.ya1{bottom:452.752000pt;}
.ycc{bottom:453.058667pt;}
.y15{bottom:455.716000pt;}
.y163{bottom:458.030667pt;}
.y73{bottom:459.145333pt;}
.y4a{bottom:459.212000pt;}
.y138{bottom:459.901333pt;}
.y1b1{bottom:460.233333pt;}
.y18b{bottom:467.222667pt;}
.ya0{bottom:467.297333pt;}
.ycb{bottom:467.604000pt;}
.y14{bottom:470.261333pt;}
.y1d8{bottom:470.797333pt;}
.y162{bottom:472.576000pt;}
.y72{bottom:473.690667pt;}
.y49{bottom:473.757333pt;}
.y1b0{bottom:474.778667pt;}
.yee{bottom:478.293333pt;}
.y18a{bottom:481.768000pt;}
.yca{bottom:482.149333pt;}
.y13{bottom:484.806667pt;}
.y1d7{bottom:485.342667pt;}
.y71{bottom:488.236000pt;}
.y117{bottom:489.098667pt;}
.y137{bottom:490.341333pt;}
.y9f{bottom:493.930667pt;}
.y48{bottom:495.608000pt;}
.y189{bottom:496.313333pt;}
.y1af{bottom:496.629333pt;}
.y12{bottom:499.352000pt;}
.y116{bottom:502.381333pt;}
.y70{bottom:502.781333pt;}
.y161{bottom:504.652000pt;}
.yc9{bottom:507.312000pt;}
.y47{bottom:510.153333pt;}
.y188{bottom:510.858667pt;}
.y1d6{bottom:511.089333pt;}
.y11{bottom:513.897333pt;}
.yed{bottom:514.690667pt;}
.y6f{bottom:517.326667pt;}
.y1ae{bottom:518.481333pt;}
.y46{bottom:524.698667pt;}
.y187{bottom:525.404000pt;}
.y9e{bottom:525.768000pt;}
.yec{bottom:529.236000pt;}
.y10{bottom:531.988000pt;}
.y136{bottom:532.465333pt;}
.y1ad{bottom:533.026667pt;}
.y1d5{bottom:536.834667pt;}
.y6e{bottom:539.178667pt;}
.y45{bottom:539.244000pt;}
.y9d{bottom:540.313333pt;}
.yc8{bottom:543.709333pt;}
.yf{bottom:546.534667pt;}
.y135{bottom:547.010667pt;}
.y1ac{bottom:547.572000pt;}
.y160{bottom:550.870667pt;}
.y6d{bottom:553.724000pt;}
.y44{bottom:553.790667pt;}
.y9c{bottom:554.858667pt;}
.yeb{bottom:556.166667pt;}
.y186{bottom:556.800000pt;}
.ye{bottom:561.080000pt;}
.y134{bottom:561.556000pt;}
.y15f{bottom:565.416000pt;}
.y43{bottom:568.336000pt;}
.yc7{bottom:568.872000pt;}
.y9b{bottom:569.404000pt;}
.y1ab{bottom:569.424000pt;}
.y1d4{bottom:569.792000pt;}
.y185{bottom:571.345333pt;}
.y6c{bottom:575.574667pt;}
.yd{bottom:575.625333pt;}
.y133{bottom:576.101333pt;}
.y9a{bottom:583.949333pt;}
.y1aa{bottom:583.969333pt;}
.y1d3{bottom:584.337333pt;}
.y184{bottom:585.890667pt;}
.y15e{bottom:587.268000pt;}
.y6b{bottom:590.120000pt;}
.yc{bottom:590.170667pt;}
.y42{bottom:590.186667pt;}
.y132{bottom:590.646667pt;}
.yea{bottom:597.644000pt;}
.y99{bottom:598.494667pt;}
.y1a9{bottom:598.514667pt;}
.y1d2{bottom:598.882667pt;}
.y114{bottom:599.436000pt;}
.y15d{bottom:601.813333pt;}
.y115{bottom:604.642667pt;}
.y41{bottom:604.732000pt;}
.yc6{bottom:605.269333pt;}
.yb{bottom:608.261333pt;}
.y183{bottom:610.962667pt;}
.y6a{bottom:611.972000pt;}
.y131{bottom:612.498667pt;}
.y113{bottom:612.718667pt;}
.y98{bottom:613.041333pt;}
.y1a8{bottom:613.060000pt;}
.y15c{bottom:616.358667pt;}
.y40{bottom:619.277333pt;}
.yc5{bottom:619.814667pt;}
.ya{bottom:622.806667pt;}
.y69{bottom:626.517333pt;}
.y130{bottom:627.044000pt;}
.y97{bottom:627.586667pt;}
.y1a7{bottom:627.605333pt;}
.y15b{bottom:630.904000pt;}
.y1d1{bottom:631.841333pt;}
.y3f{bottom:633.822667pt;}
.ye9{bottom:634.040000pt;}
.yc4{bottom:634.360000pt;}
.y1f7{bottom:635.350667pt;}
.y9{bottom:637.352000pt;}
.y68{bottom:641.062667pt;}
.y12f{bottom:641.589333pt;}
.y96{bottom:642.132000pt;}
.y182{bottom:642.357333pt;}
.y1d0{bottom:646.386667pt;}
.y1f6{bottom:649.896000pt;}
.y8{bottom:651.897333pt;}
.y15a{bottom:652.756000pt;}
.y1a6{bottom:653.298667pt;}
.y67{bottom:655.608000pt;}
.y3e{bottom:655.674667pt;}
.y12e{bottom:656.134667pt;}
.yc3{bottom:656.212000pt;}
.y95{bottom:656.677333pt;}
.y181{bottom:656.902667pt;}
.ye8{bottom:664.801333pt;}
.y7{bottom:666.442667pt;}
.y159{bottom:667.301333pt;}
.y1f5{bottom:669.754667pt;}
.y3d{bottom:670.220000pt;}
.y12d{bottom:670.680000pt;}
.yc2{bottom:670.757333pt;}
.y94{bottom:671.222667pt;}
.y180{bottom:671.449333pt;}
.y66{bottom:677.460000pt;}
.y1cf{bottom:679.344000pt;}
.y158{bottom:681.846667pt;}
.y1f4{bottom:684.300000pt;}
.yc1{bottom:685.302667pt;}
.y93{bottom:685.768000pt;}
.y17f{bottom:685.994667pt;}
.y1a5{bottom:686.250667pt;}
.ye7{bottom:688.254667pt;}
.y65{bottom:692.005333pt;}
.y3c{bottom:692.072000pt;}
.y6{bottom:696.269333pt;}
.y157{bottom:696.392000pt;}
.yc0{bottom:699.848000pt;}
.y17e{bottom:700.540000pt;}
.y1a4{bottom:700.796000pt;}
.y12c{bottom:701.118667pt;}
.y1f3{bottom:704.160000pt;}
.y3b{bottom:706.617333pt;}
.y112{bottom:707.221333pt;}
.y1ce{bottom:707.460000pt;}
.y92{bottom:707.620000pt;}
.y156{bottom:710.937333pt;}
.ye6{bottom:711.709333pt;}
.y64{bottom:713.856000pt;}
.ybf{bottom:714.393333pt;}
.y17d{bottom:715.085333pt;}
.y1f2{bottom:718.705333pt;}
.y3a{bottom:721.162667pt;}
.y155{bottom:725.482667pt;}
.y1a3{bottom:728.284000pt;}
.y63{bottom:728.401333pt;}
.ybe{bottom:728.938667pt;}
.y1cd{bottom:729.221333pt;}
.y91{bottom:729.470667pt;}
.y17b{bottom:731.502667pt;}
.y5{bottom:731.933333pt;}
.ye5{bottom:735.164000pt;}
.y39{bottom:735.708000pt;}
.y1f1{bottom:738.564000pt;}
.y12b{bottom:743.244000pt;}
.y17c{bottom:743.606667pt;}
.y90{bottom:744.016000pt;}
.y154{bottom:747.334667pt;}
.y38{bottom:750.253333pt;}
.ybd{bottom:750.790667pt;}
.y1cc{bottom:750.981333pt;}
.y12a{bottom:757.789333pt;}
.y1f0{bottom:758.422667pt;}
.ye4{bottom:758.618667pt;}
.y17a{bottom:761.686667pt;}
.y153{bottom:761.880000pt;}
.y1a2{bottom:763.029333pt;}
.y37{bottom:764.798667pt;}
.ybc{bottom:765.336000pt;}
.y8f{bottom:765.868000pt;}
.y179{bottom:767.092000pt;}
.y62{bottom:772.104000pt;}
.y129{bottom:772.334667pt;}
.y1cb{bottom:772.742667pt;}
.y1ef{bottom:772.968000pt;}
.y152{bottom:776.425333pt;}
.y1a1{bottom:777.574667pt;}
.ybb{bottom:779.881333pt;}
.y8e{bottom:780.413333pt;}
.y178{bottom:781.637333pt;}
.ye3{bottom:782.073333pt;}
.y4{bottom:785.030667pt;}
.y36{bottom:786.650667pt;}
.y128{bottom:786.880000pt;}
.y151{bottom:790.970667pt;}
.y1ee{bottom:792.826667pt;}
.yba{bottom:794.426667pt;}
.y1ca{bottom:794.504000pt;}
.y8d{bottom:794.958667pt;}
.y177{bottom:796.182667pt;}
.y1a0{bottom:799.425333pt;}
.y3{bottom:799.576000pt;}
.y35{bottom:801.196000pt;}
.y127{bottom:801.425333pt;}
.y111{bottom:802.342667pt;}
.y150{bottom:805.516000pt;}
.y1ed{bottom:807.372000pt;}
.yb9{bottom:808.972000pt;}
.ye2{bottom:809.004000pt;}
.y176{bottom:810.728000pt;}
.y105{bottom:811.622667pt;}
.y19f{bottom:813.970667pt;}
.y34{bottom:815.741333pt;}
.y126{bottom:815.970667pt;}
.y14f{bottom:820.061333pt;}
.y8c{bottom:821.302667pt;}
.y1c9{bottom:822.620000pt;}
.y61{bottom:823.046667pt;}
.yb8{bottom:823.517333pt;}
.y175{bottom:825.273333pt;}
.y1ec{bottom:827.230667pt;}
.y19e{bottom:828.517333pt;}
.y33{bottom:830.286667pt;}
.y104{bottom:832.392000pt;}
.y14e{bottom:834.606667pt;}
.y60{bottom:837.592000pt;}
.yb7{bottom:838.062667pt;}
.y174{bottom:839.818667pt;}
.y1eb{bottom:841.777333pt;}
.y19d{bottom:843.062667pt;}
.y32{bottom:844.832000pt;}
.ye1{bottom:845.401333pt;}
.y125{bottom:846.410667pt;}
.y103{bottom:846.937333pt;}
.y8b{bottom:847.645333pt;}
.y14d{bottom:849.152000pt;}
.y5f{bottom:852.137333pt;}
.y1c8{bottom:855.577333pt;}
.y31{bottom:859.377333pt;}
.ye0{bottom:859.946667pt;}
.y102{bottom:861.482667pt;}
.y1ea{bottom:861.636000pt;}
.y173{bottom:861.670667pt;}
.y8a{bottom:862.190667pt;}
.yb6{bottom:864.696000pt;}
.y5e{bottom:866.682667pt;}
.y1c7{bottom:870.122667pt;}
.y14c{bottom:871.004000pt;}
.y30{bottom:873.922667pt;}
.y19c{bottom:876.014667pt;}
.y101{bottom:876.028000pt;}
.y1e9{bottom:876.181333pt;}
.y172{bottom:876.216000pt;}
.y89{bottom:876.736000pt;}
.y5d{bottom:881.229333pt;}
.y2{bottom:881.728000pt;}
.y1c6{bottom:884.668000pt;}
.y14b{bottom:885.549333pt;}
.y124{bottom:888.534667pt;}
.y100{bottom:890.573333pt;}
.ydf{bottom:890.694667pt;}
.y171{bottom:890.761333pt;}
.y88{bottom:891.282667pt;}
.y19a{bottom:894.508000pt;}
.yb5{bottom:894.913333pt;}
.y2f{bottom:895.774667pt;}
.y1e8{bottom:896.040000pt;}
.y110{bottom:898.494667pt;}
.y1c5{bottom:899.213333pt;}
.y14a{bottom:900.094667pt;}
.y123{bottom:903.080000pt;}
.yff{bottom:905.118667pt;}
.yde{bottom:905.240000pt;}
.y170{bottom:905.306667pt;}
.y87{bottom:905.828000pt;}
.y19b{bottom:906.610667pt;}
.y1{bottom:908.294667pt;}
.y2e{bottom:910.320000pt;}
.y149{bottom:914.640000pt;}
.y1e7{bottom:915.898667pt;}
.y5c{bottom:917.625333pt;}
.yfe{bottom:919.665333pt;}
.y16f{bottom:919.852000pt;}
.y86{bottom:920.373333pt;}
.y199{bottom:924.690667pt;}
.y2d{bottom:932.170667pt;}
.yfd{bottom:934.210667pt;}
.y2c{bottom:946.716000pt;}
.yfc{bottom:949.286667pt;}
.y2b{bottom:997.990667pt;}
.hd{height:13.048294pt;}
.h5{height:14.824448pt;}
.hb{height:26.184294pt;}
.h6{height:32.900710pt;}
.h9{height:35.865600pt;}
.h3{height:36.556100pt;}
.h2{height:36.874903pt;}
.h8{height:38.043849pt;}
.h7{height:39.850400pt;}
.h4{height:44.250180pt;}
.ha{height:54.527377pt;}
.hc{height:56.925628pt;}
.h1{height:63.169041pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x59{left:94.445333pt;}
.x8{left:95.588000pt;}
.x1{left:96.573333pt;}
.x64{left:102.641333pt;}
.x38{left:103.970667pt;}
.x9{left:111.762667pt;}
.x3f{left:113.212000pt;}
.xa{left:117.520000pt;}
.x65{left:124.772000pt;}
.x2f{left:127.916000pt;}
.x2c{left:131.198667pt;}
.x11{left:132.529333pt;}
.x7{left:143.821333pt;}
.x2d{left:145.024000pt;}
.x1f{left:146.773333pt;}
.x4b{left:154.726667pt;}
.x45{left:158.374667pt;}
.x4c{left:168.536000pt;}
.x5c{left:185.073333pt;}
.x28{left:188.346667pt;}
.x5d{left:200.197333pt;}
.x29{left:206.382667pt;}
.x40{left:208.484000pt;}
.x2{left:210.529333pt;}
.x39{left:215.417333pt;}
.x19{left:224.076000pt;}
.x27{left:226.990667pt;}
.x1a{left:234.038667pt;}
.x51{left:238.790667pt;}
.x4f{left:246.960000pt;}
.x46{left:248.205333pt;}
.xf{left:253.760000pt;}
.x50{left:257.149333pt;}
.x4{left:282.666667pt;}
.x52{left:291.909333pt;}
.x62{left:295.690667pt;}
.x60{left:300.721333pt;}
.x10{left:310.204000pt;}
.x24{left:315.148000pt;}
.x20{left:325.254667pt;}
.x56{left:330.397333pt;}
.x63{left:331.305333pt;}
.x57{left:337.777333pt;}
.x25{left:341.446667pt;}
.x21{left:343.414667pt;}
.x41{left:345.645333pt;}
.x1d{left:348.100000pt;}
.x58{left:351.230667pt;}
.x61{left:354.212000pt;}
.x5{left:359.124000pt;}
.x2a{left:360.525333pt;}
.x12{left:362.128000pt;}
.x14{left:363.818667pt;}
.x1e{left:365.029333pt;}
.x2b{left:366.561333pt;}
.x6{left:369.728000pt;}
.x3{left:373.304000pt;}
.x3a{left:375.240000pt;}
.x15{left:377.281333pt;}
.x3e{left:379.965333pt;}
.x30{left:381.672000pt;}
.x1b{left:386.100000pt;}
.x3d{left:387.742667pt;}
.x26{left:390.208000pt;}
.x31{left:392.173333pt;}
.x43{left:393.065333pt;}
.x42{left:396.390667pt;}
.x1c{left:398.882667pt;}
.x55{left:400.860000pt;}
.xe{left:404.678667pt;}
.x32{left:412.922667pt;}
.x16{left:415.272000pt;}
.x33{left:419.336000pt;}
.x2e{left:422.285333pt;}
.x34{left:426.217333pt;}
.x35{left:432.630667pt;}
.x44{left:439.018667pt;}
.x13{left:447.693333pt;}
.x5e{left:466.233333pt;}
.x4d{left:476.284000pt;}
.x4e{left:493.928000pt;}
.x17{left:499.122667pt;}
.x18{left:512.586667pt;}
.x47{left:520.389333pt;}
.x53{left:525.002667pt;}
.xb{left:527.404000pt;}
.x48{left:540.046667pt;}
.xc{left:545.660000pt;}
.x5f{left:556.074667pt;}
.x36{left:570.892000pt;}
.x54{left:578.121333pt;}
.x49{left:585.010667pt;}
.xd{left:603.382667pt;}
.x3b{left:615.013333pt;}
.x5a{left:617.232000pt;}
.x3c{left:625.224000pt;}
.x22{left:645.885333pt;}
.x37{left:653.142667pt;}
.x23{left:656.592000pt;}
.x5b{left:673.668000pt;}
.x4a{left:685.278667pt;}
}




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