
    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_1ad4a4e97407f7e9cf629833.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_e1bb503a57453ae32c58673a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9f2894954aa3823bae2bf8ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bc4d3e5d682846906cbc2040.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.014000;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_78433c4435ddfd652b7c2554.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_aefed135352ead4d9430bdad.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_70b7046670ed75776367cd56.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d5dcf368a178f12f6de9c088.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.488000;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_091a8a157f654676d5dfcb7b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ed46f9c52adf420521dde385.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.985000;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_b3401efe55cf21e4e6d63b86.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.789000;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_dff3a71798b991eff3f78f0f.woff2')format("woff");}.fff{font-family:fff;line-height:0.717000;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_3f4e723494fd39599d3b54b9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.726000;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_7de6d5ab28f27060f8205f25.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.869000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.ma{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m1c{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);}
.m11{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);}
.m3{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);}
.m15{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);}
.m28{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);}
.m27{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);}
.m18{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);}
.mc{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);}
.m24{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);}
.m1b{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);}
.m4{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);}
.m20{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m13{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);}
.me{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);}
.m17{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m25{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);}
.m1a{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);}
.m9{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);}
.m6{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);}
.m7{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);}
.m12{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);}
.m16{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);}
.m14{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);}
.m29{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);}
.m10{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);}
.mf{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);}
.m21{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m2{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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-24.936000px;}
.v2{vertical-align:-19.530000px;}
.v5{vertical-align:-17.244000px;}
.v4{vertical-align:-10.086000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:20.352000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:24.936000px;}
.vc{vertical-align:30.918000px;}
.v9{vertical-align:32.886000px;}
.v8{vertical-align:40.470000px;}
.vb{vertical-align:45.282000px;}
.vd{vertical-align:65.940000px;}
.lsb{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.000088px;}
.ls14{letter-spacing:0.000309px;}
.ls54{letter-spacing:0.000676px;}
.ls1e{letter-spacing:0.000701px;}
.ls58{letter-spacing:0.001021px;}
.ls4c{letter-spacing:0.001036px;}
.ls7{letter-spacing:0.001050px;}
.ls33{letter-spacing:0.001117px;}
.ls2e{letter-spacing:0.001133px;}
.ls57{letter-spacing:0.001233px;}
.ls39{letter-spacing:0.001331px;}
.ls3a{letter-spacing:0.001673px;}
.ls6{letter-spacing:0.002181px;}
.ls3b{letter-spacing:0.002224px;}
.ls5b{letter-spacing:0.002338px;}
.ls38{letter-spacing:0.002360px;}
.ls13{letter-spacing:0.002728px;}
.ls55{letter-spacing:0.002818px;}
.ls5{letter-spacing:0.002940px;}
.lsd{letter-spacing:0.002958px;}
.ls3c{letter-spacing:0.003394px;}
.lsa{letter-spacing:0.003488px;}
.ls8{letter-spacing:0.003494px;}
.ls11{letter-spacing:0.003741px;}
.ls37{letter-spacing:0.004435px;}
.lse{letter-spacing:0.004704px;}
.ls4f{letter-spacing:0.004800px;}
.ls10{letter-spacing:0.005204px;}
.lsf{letter-spacing:0.005415px;}
.ls41{letter-spacing:0.564701px;}
.ls26{letter-spacing:0.565200px;}
.ls1a{letter-spacing:0.670741px;}
.ls1b{letter-spacing:0.676741px;}
.ls49{letter-spacing:0.717483px;}
.ls32{letter-spacing:0.953675px;}
.lsc{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls21{letter-spacing:2.779398px;}
.ls3f{letter-spacing:2.983200px;}
.ls29{letter-spacing:2.988319px;}
.ls0{letter-spacing:2.989200px;}
.ls47{letter-spacing:7.174200px;}
.ls2a{letter-spacing:9.444545px;}
.ls4e{letter-spacing:11.395298px;}
.ls3d{letter-spacing:11.656242px;}
.ls9{letter-spacing:11.954850px;}
.ls51{letter-spacing:12.178971px;}
.ls17{letter-spacing:12.339483px;}
.ls1d{letter-spacing:12.345483px;}
.ls44{letter-spacing:12.368378px;}
.ls56{letter-spacing:12.944278px;}
.ls5a{letter-spacing:13.353189px;}
.ls4b{letter-spacing:13.448400px;}
.ls50{letter-spacing:13.454400px;}
.ls52{letter-spacing:13.681631px;}
.ls2c{letter-spacing:14.645022px;}
.ls36{letter-spacing:14.764573px;}
.ls2b{letter-spacing:14.884124px;}
.ls2d{letter-spacing:15.003676px;}
.ls59{letter-spacing:15.050400px;}
.ls2f{letter-spacing:15.183002px;}
.ls1c{letter-spacing:15.355200px;}
.ls27{letter-spacing:15.908815px;}
.ls4d{letter-spacing:16.291576px;}
.ls25{letter-spacing:16.601542px;}
.ls18{letter-spacing:16.604378px;}
.ls19{letter-spacing:16.607542px;}
.ls35{letter-spacing:16.912028px;}
.ls30{letter-spacing:17.348688px;}
.ls48{letter-spacing:17.349810px;}
.ls15{letter-spacing:17.934629px;}
.ls16{letter-spacing:17.935200px;}
.ls1f{letter-spacing:19.591200px;}
.ls45{letter-spacing:19.593598px;}
.ls24{letter-spacing:19.597200px;}
.ls40{letter-spacing:23.035200px;}
.ls46{letter-spacing:23.777542px;}
.ls31{letter-spacing:56.325483px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.ls1{letter-spacing:72.361200px;}
.ls23{letter-spacing:75.241278px;}
.ls22{letter-spacing:115.093638px;}
.ls12{letter-spacing:189.832013px;}
.ls20{letter-spacing:822.345810px;}
.ls28{letter-spacing:887.967598px;}
.ls4a{letter-spacing:902.061598px;}
.ls42{letter-spacing:950.144815px;}
.ls3e{letter-spacing:962.419200px;}
.ls43{letter-spacing:1008.867598px;}
.ls34{letter-spacing:1129.073782px;}
.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;}
}
.ws46{word-spacing:-54.551578px;}
.ws58{word-spacing:-50.732967px;}
.ws50{word-spacing:-46.065614px;}
.ws15{word-spacing:-17.394700px;}
.ws4{word-spacing:-15.655334px;}
.ws17{word-spacing:-14.943900px;}
.ws5b{word-spacing:-14.559461px;}
.ws24{word-spacing:-13.915795px;}
.ws2{word-spacing:-13.449600px;}
.ws57{word-spacing:-12.508128px;}
.ws21{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws64{word-spacing:-5.499355px;}
.wsa{word-spacing:-3.407209px;}
.ws7d{word-spacing:-3.287658px;}
.ws32{word-spacing:-3.227882px;}
.ws29{word-spacing:-2.869229px;}
.wsd{word-spacing:-2.809453px;}
.ws88{word-spacing:-2.797517px;}
.ws9d{word-spacing:-2.636122px;}
.ws89{word-spacing:-2.582323px;}
.ws55{word-spacing:-2.570851px;}
.ws38{word-spacing:-2.510575px;}
.ws3a{word-spacing:-2.450800px;}
.wsbe{word-spacing:-2.367130px;}
.ws40{word-spacing:-2.205734px;}
.ws9f{word-spacing:-2.044339px;}
.ws41{word-spacing:-1.990541px;}
.ws6{word-spacing:-1.908367px;}
.ws16{word-spacing:-1.853044px;}
.ws19{word-spacing:-1.673717px;}
.wsa8{word-spacing:-1.667750px;}
.ws70{word-spacing:-1.613941px;}
.wsb{word-spacing:-1.554166px;}
.ws5{word-spacing:-1.322630px;}
.wsa9{word-spacing:-1.291162px;}
.ws8f{word-spacing:-1.237363px;}
.ws4b{word-spacing:-1.195512px;}
.wsb1{word-spacing:-1.075968px;}
.ws1f{word-spacing:-1.016185px;}
.ws3c{word-spacing:-0.896634px;}
.wsac{word-spacing:-0.860774px;}
.ws74{word-spacing:-0.777083px;}
.wsb2{word-spacing:-0.699379px;}
.ws26{word-spacing:-0.657532px;}
.ws42{word-spacing:-0.597756px;}
.ws7{word-spacing:-0.537980px;}
.ws4c{word-spacing:-0.484186px;}
.ws77{word-spacing:-0.430387px;}
.ws53{word-spacing:-0.358654px;}
.wsa5{word-spacing:-0.322790px;}
.ws3b{word-spacing:-0.298878px;}
.ws33{word-spacing:-0.239102px;}
.ws4d{word-spacing:-0.215194px;}
.ws27{word-spacing:-0.179327px;}
.ws78{word-spacing:-0.161395px;}
.wse{word-spacing:-0.119551px;}
.ws71{word-spacing:-0.107597px;}
.ws11{word-spacing:-0.059776px;}
.ws44{word-spacing:-0.053798px;}
.ws22{word-spacing:-0.047821px;}
.ws4f{word-spacing:-0.026117px;}
.ws3{word-spacing:-0.012240px;}
.ws47{word-spacing:-0.001200px;}
.ws0{word-spacing:0.000000px;}
.ws45{word-spacing:0.002794px;}
.ws63{word-spacing:0.053798px;}
.ws25{word-spacing:0.059776px;}
.ws67{word-spacing:0.107597px;}
.wsc{word-spacing:0.119551px;}
.wsb4{word-spacing:0.161395px;}
.ws2c{word-spacing:0.179327px;}
.ws7e{word-spacing:0.215194px;}
.ws9{word-spacing:0.239102px;}
.wsa0{word-spacing:0.268992px;}
.ws28{word-spacing:0.298878px;}
.ws76{word-spacing:0.358654px;}
.ws2d{word-spacing:0.478205px;}
.ws79{word-spacing:0.537980px;}
.ws62{word-spacing:0.591782px;}
.ws98{word-spacing:0.645581px;}
.ws73{word-spacing:0.657532px;}
.wsaf{word-spacing:0.753178px;}
.ws35{word-spacing:0.777083px;}
.ws52{word-spacing:0.836858px;}
.ws61{word-spacing:0.860774px;}
.ws2b{word-spacing:0.956410px;}
.ws6b{word-spacing:1.016185px;}
.ws36{word-spacing:1.075961px;}
.ws96{word-spacing:1.129766px;}
.ws54{word-spacing:1.135736px;}
.wsb6{word-spacing:1.237363px;}
.ws31{word-spacing:1.255288px;}
.ws7c{word-spacing:1.291162px;}
.wsaa{word-spacing:1.344960px;}
.ws65{word-spacing:1.374839px;}
.ws6d{word-spacing:1.434614px;}
.ws68{word-spacing:1.494390px;}
.ws7b{word-spacing:1.560154px;}
.ws34{word-spacing:1.613941px;}
.wsb8{word-spacing:1.613952px;}
.ws80{word-spacing:1.659149px;}
.ws2a{word-spacing:1.673717px;}
.ws66{word-spacing:1.733492px;}
.ws1a{word-spacing:1.793268px;}
.ws60{word-spacing:1.853044px;}
.ws85{word-spacing:1.972595px;}
.ws6c{word-spacing:2.032370px;}
.ws5f{word-spacing:2.151922px;}
.ws99{word-spacing:2.205734px;}
.ws3f{word-spacing:2.211697px;}
.wsf{word-spacing:2.271473px;}
.wsa4{word-spacing:2.313331px;}
.ws6f{word-spacing:2.450800px;}
.ws6e{word-spacing:2.510575px;}
.ws1d{word-spacing:2.570351px;}
.ws1c{word-spacing:2.630126px;}
.ws86{word-spacing:2.749678px;}
.ws1b{word-spacing:2.809453px;}
.ws9b{word-spacing:2.851315px;}
.ws5e{word-spacing:3.108331px;}
.wsa7{word-spacing:3.120307px;}
.ws51{word-spacing:3.168107px;}
.ws72{word-spacing:3.227882px;}
.ws7a{word-spacing:3.347434px;}
.ws12{word-spacing:3.466985px;}
.wsbb{word-spacing:3.650847px;}
.wsbc{word-spacing:3.658291px;}
.ws83{word-spacing:3.706087px;}
.ws8d{word-spacing:3.712090px;}
.ws81{word-spacing:4.184292px;}
.ws75{word-spacing:4.244068px;}
.ws1e{word-spacing:4.363619px;}
.wsb0{word-spacing:4.465267px;}
.ws4e{word-spacing:4.483170px;}
.wsc0{word-spacing:4.680461px;}
.wsbd{word-spacing:4.949453px;}
.ws43{word-spacing:5.021150px;}
.ws8a{word-spacing:5.378822px;}
.wsa2{word-spacing:5.379552px;}
.wsa1{word-spacing:5.380637px;}
.wsbf{word-spacing:5.381098px;}
.ws49{word-spacing:5.559131px;}
.ws48{word-spacing:5.618906px;}
.ws7f{word-spacing:5.678682px;}
.ws3e{word-spacing:5.738458px;}
.ws10{word-spacing:5.977560px;}
.ws18{word-spacing:6.336214px;}
.ws2e{word-spacing:6.515540px;}
.ws2f{word-spacing:6.575316px;}
.ws82{word-spacing:6.993745px;}
.ws6a{word-spacing:6.993792px;}
.ws8{word-spacing:7.352399px;}
.ws69{word-spacing:7.424179px;}
.ws14{word-spacing:7.471950px;}
.ws8b{word-spacing:8.284954px;}
.ws87{word-spacing:9.324994px;}
.ws93{word-spacing:10.598285px;}
.ws9e{word-spacing:10.759680px;}
.ws37{word-spacing:10.938935px;}
.ws84{word-spacing:10.998710px;}
.ws20{word-spacing:11.910373px;}
.wsb3{word-spacing:12.696422px;}
.wsba{word-spacing:13.288205px;}
.ws90{word-spacing:13.342003px;}
.ws94{word-spacing:13.388304px;}
.ws8e{word-spacing:13.391290px;}
.wsae{word-spacing:13.391587px;}
.wsa3{word-spacing:13.394045px;}
.ws9c{word-spacing:13.395802px;}
.wsa6{word-spacing:13.396022px;}
.wsab{word-spacing:13.610995px;}
.ws30{word-spacing:13.748388px;}
.ws92{word-spacing:14.148979px;}
.ws3d{word-spacing:14.884124px;}
.ws5d{word-spacing:14.943900px;}
.ws9a{word-spacing:15.601536px;}
.ws13{word-spacing:16.916495px;}
.wsad{word-spacing:17.054093px;}
.wsb5{word-spacing:18.668045px;}
.wsc1{word-spacing:18.768874px;}
.ws97{word-spacing:18.769584px;}
.ws8c{word-spacing:18.771686px;}
.ws91{word-spacing:18.771754px;}
.ws95{word-spacing:18.775642px;}
.wsb9{word-spacing:19.098432px;}
.ws4a{word-spacing:20.861684px;}
.ws39{word-spacing:22.356074px;}
.wsb7{word-spacing:22.918118px;}
.ws56{word-spacing:69.845387px;}
.ws59{word-spacing:73.447728px;}
.ws5a{word-spacing:97.713496px;}
.ws5c{word-spacing:268.624557px;}
.ws23{word-spacing:1003.563112px;}
._14{margin-left:-8.380248px;}
._1{margin-left:-6.635092px;}
._3{margin-left:-5.479762px;}
._0{margin-left:-4.419144px;}
._30{margin-left:-2.905114px;}
._4{margin-left:-1.398758px;}
._7{width:1.091170px;}
._2{width:2.992074px;}
._2f{width:11.961133px;}
._2a{width:13.019213px;}
._b{width:14.333349px;}
._10{width:15.402511px;}
._31{width:16.856788px;}
._5{width:17.861069px;}
._6{width:19.797811px;}
._a{width:21.160562px;}
._12{width:22.521545px;}
._9{width:24.328669px;}
._2d{width:25.787203px;}
._c{width:26.803388px;}
._23{width:28.178227px;}
._d{width:29.230268px;}
._24{width:31.143088px;}
._e{width:34.513159px;}
._15{width:36.582667px;}
._22{width:38.340079px;}
._11{width:40.671328px;}
._2c{width:42.488515px;}
._8{width:43.839434px;}
._2e{width:49.553972px;}
._13{width:62.848075px;}
._19{width:71.874662px;}
._1a{width:74.725978px;}
._18{width:85.324262px;}
._17{width:98.720064px;}
._27{width:100.365219px;}
._26{width:107.813716px;}
._16{width:141.113203px;}
._20{width:145.793664px;}
._21{width:148.336082px;}
._1b{width:154.562803px;}
._29{width:160.654396px;}
._1e{width:180.977818px;}
._1d{width:194.427418px;}
._25{width:204.733039px;}
._1c{width:207.823219px;}
._1f{width:224.124134px;}
._28{width:240.956578px;}
._2b{width:2059.964700px;}
._f{width:2083.874700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(12,11,11);}
.fc0{color:rgb(125,70,38);}
.fsb{font-size:38.913804px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fsc{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:50.032512px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y11{bottom:3.425340px;}
.y10{bottom:14.151273px;}
.y2{bottom:16.184891px;}
.y2f{bottom:63.780000px;}
.yc3{bottom:105.415500px;}
.ybd{bottom:108.612000px;}
.yd1{bottom:109.507500px;}
.y10e{bottom:117.805500px;}
.yd0{bottom:119.758500px;}
.yea{bottom:121.668000px;}
.y2e{bottom:122.356500px;}
.yc2{bottom:124.648500px;}
.y60{bottom:125.572500px;}
.y12c{bottom:127.980000px;}
.ybc{bottom:128.875500px;}
.y10d{bottom:138.070500px;}
.ye9{bottom:141.931500px;}
.y2d{bottom:142.620000px;}
.yc1{bottom:143.880000px;}
.y5f{bottom:145.837500px;}
.y12b{bottom:147.348000px;}
.y15f{bottom:147.691500px;}
.y10c{bottom:158.334000px;}
.ybb{bottom:161.844000px;}
.ye8{bottom:162.196500px;}
.y2c{bottom:162.885000px;}
.ycf{bottom:163.036500px;}
.yc0{bottom:163.113000px;}
.y5e{bottom:166.101000px;}
.y12a{bottom:166.714500px;}
.y15e{bottom:167.059500px;}
.y9f{bottom:174.931500px;}
.y10b{bottom:178.599000px;}
.yba{bottom:181.077000px;}
.ye7{bottom:182.460000px;}
.y2b{bottom:183.148500px;}
.y80{bottom:184.039500px;}
.y129{bottom:186.082500px;}
.y5d{bottom:186.364500px;}
.y15d{bottom:186.427500px;}
.yf7{bottom:196.207500px;}
.yf9{bottom:198.019500px;}
.yce{bottom:198.036000px;}
.y10a{bottom:198.862500px;}
.yb9{bottom:200.310000px;}
.ye6{bottom:202.725000px;}
.y2a{bottom:203.412000px;}
.y7f{bottom:204.303000px;}
.y128{bottom:205.449000px;}
.y15c{bottom:205.794000px;}
.y5c{bottom:206.629500px;}
.y9e{bottom:212.083500px;}
.yf6{bottom:216.471000px;}
.yf8{bottom:217.252500px;}
.ycd{bottom:217.269000px;}
.y109{bottom:219.126000px;}
.ye5{bottom:222.988500px;}
.y29{bottom:223.677000px;}
.y7e{bottom:224.568000px;}
.y127{bottom:224.817000px;}
.y15b{bottom:225.162000px;}
.y9d{bottom:232.347000px;}
.y5b{bottom:235.860000px;}
.ycc{bottom:236.502000px;}
.yf5{bottom:236.734500px;}
.y108{bottom:239.391000px;}
.ye4{bottom:243.252000px;}
.y28{bottom:243.940500px;}
.y126{bottom:244.185000px;}
.y15a{bottom:244.528500px;}
.y7d{bottom:244.831500px;}
.y9c{bottom:252.610500px;}
.yf4{bottom:256.999500px;}
.y107{bottom:261.706500px;}
.ye3{bottom:263.517000px;}
.y125{bottom:263.551500px;}
.y159{bottom:263.896500px;}
.y27{bottom:264.205500px;}
.y5a{bottom:270.679500px;}
.y106{bottom:271.957500px;}
.y9b{bottom:272.875500px;}
.y7c{bottom:274.062000px;}
.yf3{bottom:277.263000px;}
.y124{bottom:282.919500px;}
.y158{bottom:283.264500px;}
.y26{bottom:284.469000px;}
.y9a{bottom:293.139000px;}
.yf2{bottom:297.528000px;}
.ye2{bottom:298.516500px;}
.y123{bottom:302.286000px;}
.y157{bottom:302.631000px;}
.y25{bottom:304.732500px;}
.y59{bottom:305.499000px;}
.y7b{bottom:308.881500px;}
.y98{bottom:313.404000px;}
.y105{bottom:315.183000px;}
.ye1{bottom:317.749500px;}
.yf1{bottom:317.791500px;}
.y99{bottom:318.828000px;}
.y122{bottom:321.654000px;}
.y156{bottom:321.999000px;}
.y24{bottom:324.997500px;}
.y58{bottom:325.762500px;}
.y7a{bottom:329.145000px;}
.y97{bottom:333.667500px;}
.yf0{bottom:338.055000px;}
.y121{bottom:341.022000px;}
.y155{bottom:341.367000px;}
.y23{bottom:345.261000px;}
.y57{bottom:346.027500px;}
.y79{bottom:349.410000px;}
.y104{bottom:352.333500px;}
.y96{bottom:353.931000px;}
.yef{bottom:358.320000px;}
.y120{bottom:360.388500px;}
.y154{bottom:360.733500px;}
.y22{bottom:365.526000px;}
.y56{bottom:366.291000px;}
.y78{bottom:369.673500px;}
.y103{bottom:372.597000px;}
.y94{bottom:374.196000px;}
.yee{bottom:378.583500px;}
.y95{bottom:379.620000px;}
.y11f{bottom:379.756500px;}
.y153{bottom:380.101500px;}
.y21{bottom:385.789500px;}
.y55{bottom:386.554500px;}
.y77{bottom:389.937000px;}
.y102{bottom:392.862000px;}
.y93{bottom:394.459500px;}
.y11e{bottom:399.123000px;}
.y152{bottom:399.468000px;}
.y20{bottom:406.053000px;}
.y54{bottom:406.819500px;}
.yed{bottom:407.814000px;}
.y76{bottom:410.202000px;}
.y101{bottom:413.125500px;}
.y92{bottom:414.724500px;}
.y11d{bottom:418.491000px;}
.y151{bottom:418.836000px;}
.y53{bottom:427.083000px;}
.y75{bottom:430.465500px;}
.y100{bottom:433.390500px;}
.y91{bottom:434.988000px;}
.y1f{bottom:435.283500px;}
.y11c{bottom:437.859000px;}
.y150{bottom:438.204000px;}
.yec{bottom:439.437000px;}
.y52{bottom:447.348000px;}
.y74{bottom:450.730500px;}
.y14f{bottom:457.570500px;}
.yeb{bottom:458.670000px;}
.y90{bottom:464.218500px;}
.y11b{bottom:466.192500px;}
.y51{bottom:467.611500px;}
.yff{bottom:468.390000px;}
.y73{bottom:470.994000px;}
.y14e{bottom:476.938500px;}
.yfe{bottom:487.623000px;}
.y50{bottom:487.875000px;}
.y71{bottom:491.257500px;}
.y14d{bottom:496.305000px;}
.y72{bottom:496.683000px;}
.y8f{bottom:499.038000px;}
.y11a{bottom:505.644000px;}
.y4f{bottom:508.140000px;}
.y70{bottom:511.522500px;}
.y1e{bottom:511.699500px;}
.y14c{bottom:515.673000px;}
.y8d{bottom:519.301500px;}
.ybf{bottom:521.799000px;}
.y8e{bottom:524.727000px;}
.y4e{bottom:528.403500px;}
.y119{bottom:529.809000px;}
.y6f{bottom:531.786000px;}
.y1d{bottom:531.964500px;}
.y14b{bottom:535.041000px;}
.y8c{bottom:539.566500px;}
.ybe{bottom:541.032000px;}
.y118{bottom:545.007000px;}
.y4d{bottom:548.667000px;}
.y14a{bottom:554.407500px;}
.y8b{bottom:559.830000px;}
.y117{bottom:560.205000px;}
.y4c{bottom:568.932000px;}
.y1c{bottom:570.160500px;}
.y149{bottom:573.775500px;}
.y6e{bottom:579.040500px;}
.y8a{bottom:580.093500px;}
.y116{bottom:584.368500px;}
.y4b{bottom:589.195500px;}
.y1b{bottom:590.425500px;}
.y148{bottom:593.142000px;}
.y6d{bottom:595.836000px;}
.y89{bottom:600.358500px;}
.yb8{bottom:607.236000px;}
.y115{bottom:608.533500px;}
.y4a{bottom:609.460500px;}
.y147{bottom:609.822000px;}
.y1a{bottom:610.689000px;}
.y146{bottom:612.510000px;}
.y6c{bottom:619.833000px;}
.y114{bottom:623.731500px;}
.yb7{bottom:627.501000px;}
.y88{bottom:629.589000px;}
.y49{bottom:629.724000px;}
.y19{bottom:630.952500px;}
.y145{bottom:631.878000px;}
.y113{bottom:638.929500px;}
.yb6{bottom:647.764500px;}
.y48{bottom:649.987500px;}
.y18{bottom:651.217500px;}
.y144{bottom:651.244500px;}
.y6b{bottom:651.453000px;}
.y112{bottom:654.127500px;}
.y87{bottom:664.408500px;}
.yb5{bottom:668.028000px;}
.y47{bottom:670.252500px;}
.y143{bottom:670.612500px;}
.y17{bottom:671.481000px;}
.y6a{bottom:684.664500px;}
.y86{bottom:684.672000px;}
.y111{bottom:687.258000px;}
.yb4{bottom:688.293000px;}
.y142{bottom:689.979000px;}
.y46{bottom:690.516000px;}
.y16{bottom:691.746000px;}
.y69{bottom:704.928000px;}
.y85{bottom:704.937000px;}
.ycb{bottom:707.263500px;}
.y110{bottom:707.523000px;}
.yb3{bottom:708.556500px;}
.y141{bottom:709.347000px;}
.y45{bottom:710.781000px;}
.y15{bottom:712.009500px;}
.y68{bottom:725.193000px;}
.y84{bottom:725.200500px;}
.yca{bottom:727.527000px;}
.ye0{bottom:727.786500px;}
.y140{bottom:728.715000px;}
.yb2{bottom:728.821500px;}
.y44{bottom:731.044500px;}
.y14{bottom:732.273000px;}
.y67{bottom:745.456500px;}
.y83{bottom:745.464000px;}
.yc9{bottom:747.792000px;}
.ydf{bottom:748.051500px;}
.y13f{bottom:748.081500px;}
.yb1{bottom:749.085000px;}
.y43{bottom:751.308000px;}
.y13{bottom:752.538000px;}
.y66{bottom:765.721500px;}
.y13e{bottom:767.449500px;}
.yc8{bottom:768.055500px;}
.yde{bottom:768.315000px;}
.yaf{bottom:769.348500px;}
.y42{bottom:771.573000px;}
.y12{bottom:772.801500px;}
.yb0{bottom:774.774000px;}
.y82{bottom:780.465000px;}
.y65{bottom:785.985000px;}
.y13d{bottom:786.816000px;}
.yc7{bottom:788.320500px;}
.ydd{bottom:788.578500px;}
.yae{bottom:789.613500px;}
.y41{bottom:791.836500px;}
.y81{bottom:799.698000px;}
.y13c{bottom:806.184000px;}
.y64{bottom:806.248500px;}
.yf{bottom:808.234464px;}
.yc6{bottom:808.584000px;}
.ydc{bottom:808.843500px;}
.ye{bottom:809.001000px;}
.yad{bottom:809.877000px;}
.y40{bottom:812.101500px;}
.y13b{bottom:825.552000px;}
.y63{bottom:826.513500px;}
.yc5{bottom:828.847500px;}
.ydb{bottom:829.107000px;}
.y3f{bottom:832.365000px;}
.yac{bottom:839.107500px;}
.y13a{bottom:844.918500px;}
.y62{bottom:846.777000px;}
.yd{bottom:848.007000px;}
.yda{bottom:849.372000px;}
.y3e{bottom:852.628500px;}
.yc4{bottom:863.848500px;}
.y139{bottom:864.286500px;}
.yd9{bottom:869.635500px;}
.yc{bottom:871.045500px;}
.y3d{bottom:872.893500px;}
.yab{bottom:873.927000px;}
.y61{bottom:881.778000px;}
.y138{bottom:883.653000px;}
.yb{bottom:884.320500px;}
.yd8{bottom:889.899000px;}
.y3c{bottom:893.157000px;}
.y137{bottom:903.021000px;}
.ya{bottom:907.359000px;}
.yaa{bottom:908.746500px;}
.yd7{bottom:910.164000px;}
.y3b{bottom:913.422000px;}
.y9{bottom:920.634000px;}
.y136{bottom:922.389000px;}
.y162{bottom:928.267500px;}
.ya9{bottom:929.011500px;}
.yd6{bottom:930.427500px;}
.y3a{bottom:933.685500px;}
.y135{bottom:941.755500px;}
.y8{bottom:943.674000px;}
.y161{bottom:947.634000px;}
.ya7{bottom:949.275000px;}
.yd5{bottom:950.692500px;}
.y39{bottom:953.949000px;}
.ya8{bottom:954.699000px;}
.yfd{bottom:955.617000px;}
.yfc{bottom:960.705000px;}
.y134{bottom:961.123500px;}
.y7{bottom:965.914500px;}
.y160{bottom:967.002000px;}
.yd4{bottom:970.956000px;}
.y38{bottom:974.214000px;}
.ya6{bottom:979.671000px;}
.y10f{bottom:979.923000px;}
.y133{bottom:980.490000px;}
.yd3{bottom:991.219500px;}
.y37{bottom:994.477500px;}
.yfb{bottom:997.855500px;}
.y132{bottom:999.858000px;}
.ya5{bottom:999.936000px;}
.y6{bottom:1010.451000px;}
.y36{bottom:1014.742500px;}
.ya4{bottom:1017.402000px;}
.y131{bottom:1019.226000px;}
.ya3{bottom:1020.199500px;}
.yd2{bottom:1020.450000px;}
.y35{bottom:1035.006000px;}
.y130{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.yfa{bottom:1052.473500px;}
.y34{bottom:1055.269500px;}
.y12f{bottom:1057.960500px;}
.ya2{bottom:1064.787690px;}
.y4{bottom:1071.244500px;}
.y33{bottom:1075.534500px;}
.y12e{bottom:1077.327000px;}
.ya1{bottom:1087.106295px;}
.y32{bottom:1095.798000px;}
.y12d{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y31{bottom:1116.063000px;}
.ya0{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.h9{height:25.508090px;}
.h7{height:30.587087px;}
.h11{height:32.391305px;}
.hb{height:33.112997px;}
.h13{height:33.209038px;}
.ha{height:34.199443px;}
.he{height:35.052500px;}
.h16{height:36.023409px;}
.h17{height:36.573766px;}
.h23{height:37.551283px;}
.h27{height:37.927872px;}
.h25{height:38.412058px;}
.h26{height:38.465856px;}
.h10{height:38.734848px;}
.h8{height:39.326630px;}
.h24{height:39.434227px;}
.hf{height:41.723369px;}
.h1c{height:41.962471px;}
.h12{height:42.620003px;}
.hc{height:43.038432px;}
.hd{height:43.695964px;}
.h4{height:43.815515px;}
.h1e{height:46.714950px;}
.h15{height:47.344950px;}
.h2{height:50.930649px;}
.h19{height:54.087305px;}
.h6{height:54.411312px;}
.h14{height:54.905038px;}
.h1f{height:57.321305px;}
.h18{height:60.439200px;}
.h1d{height:65.277305px;}
.h5{height:77.469696px;}
.h20{height:80.785200px;}
.h21{height:84.165964px;}
.h1a{height:84.285515px;}
.h1b{height:84.699964px;}
.h22{height:98.331305px;}
.h3{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:157.115855px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:56.331755px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x56{left:132.349035px;}
.x4{left:146.170500px;}
.x5f{left:153.358500px;}
.x41{left:159.856500px;}
.x42{left:165.115500px;}
.x32{left:167.124000px;}
.x76{left:169.071000px;}
.x40{left:170.131500px;}
.x33{left:171.687000px;}
.x55{left:184.609500px;}
.x34{left:186.631500px;}
.x8{left:188.851500px;}
.x35{left:190.293000px;}
.x8b{left:191.341500px;}
.x6f{left:195.648000px;}
.x60{left:198.549000px;}
.x9{left:203.320500px;}
.x24{left:204.681000px;}
.x61{left:207.778500px;}
.x36{left:208.897500px;}
.x25{left:212.154000px;}
.x8c{left:214.978500px;}
.x6e{left:216.453000px;}
.x6d{left:221.589000px;}
.x37{left:223.842000px;}
.x8d{left:225.523500px;}
.x8e{left:231.502500px;}
.x7f{left:242.517000px;}
.x94{left:251.667000px;}
.x96{left:254.101500px;}
.x7e{left:255.403500px;}
.x95{left:267.238500px;}
.xe{left:280.108500px;}
.xf{left:287.581500px;}
.x10{left:295.060500px;}
.x43{left:300.195000px;}
.x11{left:302.532000px;}
.x44{left:306.882000px;}
.x70{left:312.045000px;}
.x5a{left:320.962500px;}
.x71{left:325.020000px;}
.x5b{left:333.912000px;}
.x54{left:337.813500px;}
.x3a{left:344.599500px;}
.x3b{left:351.325500px;}
.x59{left:353.472000px;}
.x7b{left:356.995500px;}
.x62{left:360.678000px;}
.x57{left:365.388000px;}
.x78{left:368.880000px;}
.x77{left:372.085500px;}
.x58{left:379.438500px;}
.x88{left:380.737500px;}
.x7a{left:383.697000px;}
.x69{left:384.702000px;}
.x47{left:388.642500px;}
.x6a{left:392.920500px;}
.x6b{left:399.618000px;}
.x48{left:401.547000px;}
.x6c{left:406.342500px;}
.x49{left:411.948000px;}
.x4a{left:424.852500px;}
.x67{left:434.902500px;}
.x5c{left:436.903500px;}
.x68{left:441.627000px;}
.x52{left:443.887500px;}
.x7c{left:446.643000px;}
.x53{left:450.574500px;}
.x63{left:451.585500px;}
.x81{left:459.241500px;}
.x4b{left:462.556500px;}
.x4c{left:468.982500px;}
.x79{left:474.735000px;}
.x45{left:490.563000px;}
.x72{left:492.004500px;}
.x73{left:503.395500px;}
.x46{left:505.507500px;}
.x3c{left:528.972000px;}
.x2c{left:533.145000px;}
.x64{left:534.276000px;}
.x3d{left:537.190500px;}
.x65{left:540.247500px;}
.x2d{left:548.088000px;}
.x86{left:565.524000px;}
.x22{left:570.154500px;}
.x84{left:573.039000px;}
.x28{left:576.123000px;}
.x23{left:585.097500px;}
.x29{left:591.067500px;}
.x87{left:592.423500px;}
.x2a{left:594.877500px;}
.x12{left:597.696000px;}
.x13{left:605.167500px;}
.x2b{left:609.822000px;}
.x38{left:614.617500px;}
.x4d{left:619.623000px;}
.x2e{left:620.796000px;}
.x91{left:622.587000px;}
.x39{left:623.847000px;}
.x74{left:625.264500px;}
.x7d{left:628.024500px;}
.x4e{left:630.730500px;}
.x75{left:631.989000px;}
.x2f{left:635.740500px;}
.x85{left:636.888000px;}
.x66{left:638.014500px;}
.x1a{left:639.883500px;}
.x4f{left:644.467500px;}
.x20{left:645.777000px;}
.x1b{left:647.355000px;}
.x1c{left:651.016500px;}
.x21{left:660.721500px;}
.xa{left:663.394500px;}
.x1d{left:665.959500px;}
.x1e{left:669.621000px;}
.xb{left:670.867500px;}
.x82{left:673.236000px;}
.x92{left:675.967500px;}
.xc{left:678.489000px;}
.x50{left:681.597000px;}
.x1f{left:684.565500px;}
.xd{left:685.960500px;}
.x14{left:687.909000px;}
.x51{left:691.762500px;}
.x15{left:695.382000px;}
.x16{left:699.049500px;}
.x83{left:700.134000px;}
.x6{left:701.339982px;}
.x93{left:702.867000px;}
.x80{left:705.145500px;}
.x17{left:713.994000px;}
.x18{left:717.663000px;}
.x5d{left:725.796000px;}
.x19{left:732.606000px;}
.x5e{left:735.027000px;}
.x8f{left:749.517000px;}
.x3e{left:754.530000px;}
.x26{left:756.895500px;}
.x30{left:758.194500px;}
.x3f{left:763.761000px;}
.x89{left:767.043000px;}
.x8a{left:770.782500px;}
.x27{left:771.838500px;}
.x31{left:773.139000px;}
.x90{left:776.415000px;}
@media print{
.v7{vertical-align:-22.165333pt;}
.v2{vertical-align:-17.360000pt;}
.v5{vertical-align:-15.328000pt;}
.v4{vertical-align:-8.965333pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:18.090667pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:22.165333pt;}
.vc{vertical-align:27.482667pt;}
.v9{vertical-align:29.232000pt;}
.v8{vertical-align:35.973333pt;}
.vb{vertical-align:40.250667pt;}
.vd{vertical-align:58.613333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.000078pt;}
.ls14{letter-spacing:0.000274pt;}
.ls54{letter-spacing:0.000600pt;}
.ls1e{letter-spacing:0.000623pt;}
.ls58{letter-spacing:0.000907pt;}
.ls4c{letter-spacing:0.000921pt;}
.ls7{letter-spacing:0.000934pt;}
.ls33{letter-spacing:0.000993pt;}
.ls2e{letter-spacing:0.001007pt;}
.ls57{letter-spacing:0.001096pt;}
.ls39{letter-spacing:0.001183pt;}
.ls3a{letter-spacing:0.001487pt;}
.ls6{letter-spacing:0.001939pt;}
.ls3b{letter-spacing:0.001977pt;}
.ls5b{letter-spacing:0.002078pt;}
.ls38{letter-spacing:0.002097pt;}
.ls13{letter-spacing:0.002425pt;}
.ls55{letter-spacing:0.002505pt;}
.ls5{letter-spacing:0.002613pt;}
.lsd{letter-spacing:0.002630pt;}
.ls3c{letter-spacing:0.003017pt;}
.lsa{letter-spacing:0.003100pt;}
.ls8{letter-spacing:0.003106pt;}
.ls11{letter-spacing:0.003325pt;}
.ls37{letter-spacing:0.003942pt;}
.lse{letter-spacing:0.004181pt;}
.ls4f{letter-spacing:0.004267pt;}
.ls10{letter-spacing:0.004625pt;}
.lsf{letter-spacing:0.004813pt;}
.ls41{letter-spacing:0.501956pt;}
.ls26{letter-spacing:0.502400pt;}
.ls1a{letter-spacing:0.596214pt;}
.ls1b{letter-spacing:0.601548pt;}
.ls49{letter-spacing:0.637762pt;}
.ls32{letter-spacing:0.847711pt;}
.lsc{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls21{letter-spacing:2.470576pt;}
.ls3f{letter-spacing:2.651733pt;}
.ls29{letter-spacing:2.656284pt;}
.ls0{letter-spacing:2.657067pt;}
.ls47{letter-spacing:6.377067pt;}
.ls2a{letter-spacing:8.395151pt;}
.ls4e{letter-spacing:10.129154pt;}
.ls3d{letter-spacing:10.361104pt;}
.ls9{letter-spacing:10.626533pt;}
.ls51{letter-spacing:10.825752pt;}
.ls17{letter-spacing:10.968429pt;}
.ls1d{letter-spacing:10.973762pt;}
.ls44{letter-spacing:10.994114pt;}
.ls56{letter-spacing:11.506024pt;}
.ls5a{letter-spacing:11.869501pt;}
.ls4b{letter-spacing:11.954133pt;}
.ls50{letter-spacing:11.959467pt;}
.ls52{letter-spacing:12.161450pt;}
.ls2c{letter-spacing:13.017797pt;}
.ls36{letter-spacing:13.124065pt;}
.ls2b{letter-spacing:13.230333pt;}
.ls2d{letter-spacing:13.336601pt;}
.ls59{letter-spacing:13.378133pt;}
.ls2f{letter-spacing:13.496002pt;}
.ls1c{letter-spacing:13.649067pt;}
.ls27{letter-spacing:14.141169pt;}
.ls4d{letter-spacing:14.481401pt;}
.ls25{letter-spacing:14.756926pt;}
.ls18{letter-spacing:14.759447pt;}
.ls19{letter-spacing:14.762259pt;}
.ls35{letter-spacing:15.032914pt;}
.ls30{letter-spacing:15.421056pt;}
.ls48{letter-spacing:15.422053pt;}
.ls15{letter-spacing:15.941892pt;}
.ls16{letter-spacing:15.942400pt;}
.ls1f{letter-spacing:17.414400pt;}
.ls45{letter-spacing:17.416531pt;}
.ls24{letter-spacing:17.419733pt;}
.ls40{letter-spacing:20.475733pt;}
.ls46{letter-spacing:21.135593pt;}
.ls31{letter-spacing:50.067096pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ls1{letter-spacing:64.321067pt;}
.ls23{letter-spacing:66.881136pt;}
.ls22{letter-spacing:102.305456pt;}
.ls12{letter-spacing:168.739567pt;}
.ls20{letter-spacing:730.974053pt;}
.ls28{letter-spacing:789.304531pt;}
.ls4a{letter-spacing:801.832531pt;}
.ls42{letter-spacing:844.573169pt;}
.ls3e{letter-spacing:855.483733pt;}
.ls43{letter-spacing:896.771198pt;}
.ls34{letter-spacing:1003.621139pt;}
.ws46{word-spacing:-48.490291pt;}
.ws58{word-spacing:-45.095971pt;}
.ws50{word-spacing:-40.947213pt;}
.ws15{word-spacing:-15.461955pt;}
.ws4{word-spacing:-13.915853pt;}
.ws17{word-spacing:-13.283467pt;}
.ws5b{word-spacing:-12.941743pt;}
.ws24{word-spacing:-12.369595pt;}
.ws2{word-spacing:-11.955200pt;}
.ws57{word-spacing:-11.118336pt;}
.ws21{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws64{word-spacing:-4.888316pt;}
.wsa{word-spacing:-3.028630pt;}
.ws7d{word-spacing:-2.922363pt;}
.ws32{word-spacing:-2.869229pt;}
.ws29{word-spacing:-2.550426pt;}
.wsd{word-spacing:-2.497292pt;}
.ws88{word-spacing:-2.486682pt;}
.ws9d{word-spacing:-2.343219pt;}
.ws89{word-spacing:-2.295398pt;}
.ws55{word-spacing:-2.285201pt;}
.ws38{word-spacing:-2.231622pt;}
.ws3a{word-spacing:-2.178489pt;}
.wsbe{word-spacing:-2.104115pt;}
.ws40{word-spacing:-1.960653pt;}
.ws9f{word-spacing:-1.817190pt;}
.ws41{word-spacing:-1.769370pt;}
.ws6{word-spacing:-1.696326pt;}
.ws16{word-spacing:-1.647150pt;}
.ws19{word-spacing:-1.487748pt;}
.wsa8{word-spacing:-1.482445pt;}
.ws70{word-spacing:-1.434614pt;}
.wsb{word-spacing:-1.381481pt;}
.ws5{word-spacing:-1.175671pt;}
.wsa9{word-spacing:-1.147699pt;}
.ws8f{word-spacing:-1.099878pt;}
.ws4b{word-spacing:-1.062677pt;}
.wsb1{word-spacing:-0.956416pt;}
.ws1f{word-spacing:-0.903276pt;}
.ws3c{word-spacing:-0.797008pt;}
.wsac{word-spacing:-0.765133pt;}
.ws74{word-spacing:-0.690740pt;}
.wsb2{word-spacing:-0.621670pt;}
.ws26{word-spacing:-0.584473pt;}
.ws42{word-spacing:-0.531339pt;}
.ws7{word-spacing:-0.478205pt;}
.ws4c{word-spacing:-0.430387pt;}
.ws77{word-spacing:-0.382566pt;}
.ws53{word-spacing:-0.318803pt;}
.wsa5{word-spacing:-0.286925pt;}
.ws3b{word-spacing:-0.265669pt;}
.ws33{word-spacing:-0.212535pt;}
.ws4d{word-spacing:-0.191283pt;}
.ws27{word-spacing:-0.159402pt;}
.ws78{word-spacing:-0.143462pt;}
.wse{word-spacing:-0.106268pt;}
.ws71{word-spacing:-0.095642pt;}
.ws11{word-spacing:-0.053134pt;}
.ws44{word-spacing:-0.047821pt;}
.ws22{word-spacing:-0.042507pt;}
.ws4f{word-spacing:-0.023215pt;}
.ws3{word-spacing:-0.010880pt;}
.ws47{word-spacing:-0.001067pt;}
.ws0{word-spacing:0.000000pt;}
.ws45{word-spacing:0.002483pt;}
.ws63{word-spacing:0.047821pt;}
.ws25{word-spacing:0.053134pt;}
.ws67{word-spacing:0.095642pt;}
.wsc{word-spacing:0.106268pt;}
.wsb4{word-spacing:0.143462pt;}
.ws2c{word-spacing:0.159402pt;}
.ws7e{word-spacing:0.191283pt;}
.ws9{word-spacing:0.212535pt;}
.wsa0{word-spacing:0.239104pt;}
.ws28{word-spacing:0.265669pt;}
.ws76{word-spacing:0.318803pt;}
.ws2d{word-spacing:0.425071pt;}
.ws79{word-spacing:0.478205pt;}
.ws62{word-spacing:0.526029pt;}
.ws98{word-spacing:0.573850pt;}
.ws73{word-spacing:0.584473pt;}
.wsaf{word-spacing:0.669491pt;}
.ws35{word-spacing:0.690740pt;}
.ws52{word-spacing:0.743874pt;}
.ws61{word-spacing:0.765133pt;}
.ws2b{word-spacing:0.850142pt;}
.ws6b{word-spacing:0.903276pt;}
.ws36{word-spacing:0.956410pt;}
.ws96{word-spacing:1.004237pt;}
.ws54{word-spacing:1.009543pt;}
.wsb6{word-spacing:1.099878pt;}
.ws31{word-spacing:1.115811pt;}
.ws7c{word-spacing:1.147699pt;}
.wsaa{word-spacing:1.195520pt;}
.ws65{word-spacing:1.222079pt;}
.ws6d{word-spacing:1.275213pt;}
.ws68{word-spacing:1.328347pt;}
.ws7b{word-spacing:1.386803pt;}
.ws34{word-spacing:1.434614pt;}
.wsb8{word-spacing:1.434624pt;}
.ws80{word-spacing:1.474799pt;}
.ws2a{word-spacing:1.487748pt;}
.ws66{word-spacing:1.540882pt;}
.ws1a{word-spacing:1.594016pt;}
.ws60{word-spacing:1.647150pt;}
.ws85{word-spacing:1.753418pt;}
.ws6c{word-spacing:1.806551pt;}
.ws5f{word-spacing:1.912819pt;}
.ws99{word-spacing:1.960653pt;}
.ws3f{word-spacing:1.965953pt;}
.wsf{word-spacing:2.019087pt;}
.wsa4{word-spacing:2.056294pt;}
.ws6f{word-spacing:2.178489pt;}
.ws6e{word-spacing:2.231622pt;}
.ws1d{word-spacing:2.284756pt;}
.ws1c{word-spacing:2.337890pt;}
.ws86{word-spacing:2.444158pt;}
.ws1b{word-spacing:2.497292pt;}
.ws9b{word-spacing:2.534502pt;}
.ws5e{word-spacing:2.762961pt;}
.wsa7{word-spacing:2.773606pt;}
.ws51{word-spacing:2.816095pt;}
.ws72{word-spacing:2.869229pt;}
.ws7a{word-spacing:2.975497pt;}
.ws12{word-spacing:3.081764pt;}
.wsbb{word-spacing:3.245197pt;}
.wsbc{word-spacing:3.251814pt;}
.ws83{word-spacing:3.294300pt;}
.ws8d{word-spacing:3.299635pt;}
.ws81{word-spacing:3.719371pt;}
.ws75{word-spacing:3.772505pt;}
.ws1e{word-spacing:3.878772pt;}
.wsb0{word-spacing:3.969126pt;}
.ws4e{word-spacing:3.985040pt;}
.wsc0{word-spacing:4.160410pt;}
.wsbd{word-spacing:4.399514pt;}
.ws43{word-spacing:4.463245pt;}
.ws8a{word-spacing:4.781175pt;}
.wsa2{word-spacing:4.781824pt;}
.wsa1{word-spacing:4.782788pt;}
.wsbf{word-spacing:4.783198pt;}
.ws49{word-spacing:4.941450pt;}
.ws48{word-spacing:4.994583pt;}
.ws7f{word-spacing:5.047717pt;}
.ws3e{word-spacing:5.100851pt;}
.ws10{word-spacing:5.313387pt;}
.ws18{word-spacing:5.632190pt;}
.ws2e{word-spacing:5.791591pt;}
.ws2f{word-spacing:5.844725pt;}
.ws82{word-spacing:6.216662pt;}
.ws6a{word-spacing:6.216704pt;}
.ws8{word-spacing:6.535466pt;}
.ws69{word-spacing:6.599270pt;}
.ws14{word-spacing:6.641733pt;}
.ws8b{word-spacing:7.364403pt;}
.ws87{word-spacing:8.288883pt;}
.ws93{word-spacing:9.420698pt;}
.ws9e{word-spacing:9.564160pt;}
.ws37{word-spacing:9.723498pt;}
.ws84{word-spacing:9.776631pt;}
.ws20{word-spacing:10.586998pt;}
.wsb3{word-spacing:11.285709pt;}
.wsba{word-spacing:11.811738pt;}
.ws90{word-spacing:11.859558pt;}
.ws94{word-spacing:11.900715pt;}
.ws8e{word-spacing:11.903369pt;}
.wsae{word-spacing:11.903633pt;}
.wsa3{word-spacing:11.905818pt;}
.ws9c{word-spacing:11.907379pt;}
.wsa6{word-spacing:11.907575pt;}
.wsab{word-spacing:12.098662pt;}
.ws30{word-spacing:12.220789pt;}
.ws92{word-spacing:12.576870pt;}
.ws3d{word-spacing:13.230333pt;}
.ws5d{word-spacing:13.283467pt;}
.ws9a{word-spacing:13.868032pt;}
.ws13{word-spacing:15.036884pt;}
.wsad{word-spacing:15.159194pt;}
.wsb5{word-spacing:16.593818pt;}
.wsc1{word-spacing:16.683443pt;}
.ws97{word-spacing:16.684075pt;}
.ws8c{word-spacing:16.685943pt;}
.ws91{word-spacing:16.686003pt;}
.ws95{word-spacing:16.689459pt;}
.wsb9{word-spacing:16.976384pt;}
.ws4a{word-spacing:18.543719pt;}
.ws39{word-spacing:19.872066pt;}
.wsb7{word-spacing:20.371661pt;}
.ws56{word-spacing:62.084788pt;}
.ws59{word-spacing:65.286869pt;}
.ws5a{word-spacing:86.856441pt;}
.ws5c{word-spacing:238.777384pt;}
.ws23{word-spacing:892.056099pt;}
._14{margin-left:-7.449109pt;}
._1{margin-left:-5.897859pt;}
._3{margin-left:-4.870899pt;}
._0{margin-left:-3.928128pt;}
._30{margin-left:-2.582323pt;}
._4{margin-left:-1.243341pt;}
._7{width:0.969929pt;}
._2{width:2.659621pt;}
._2f{width:10.632118pt;}
._2a{width:11.572634pt;}
._b{width:12.740754pt;}
._10{width:13.691121pt;}
._31{width:14.983811pt;}
._5{width:15.876506pt;}
._6{width:17.598054pt;}
._a{width:18.809389pt;}
._12{width:20.019151pt;}
._9{width:21.625484pt;}
._2d{width:22.921958pt;}
._c{width:23.825234pt;}
._23{width:25.047313pt;}
._d{width:25.982461pt;}
._24{width:27.682745pt;}
._e{width:30.678364pt;}
._15{width:32.517926pt;}
._22{width:34.080070pt;}
._11{width:36.152291pt;}
._2c{width:37.767569pt;}
._8{width:38.968386pt;}
._2e{width:44.047975pt;}
._13{width:55.864956pt;}
._19{width:63.888589pt;}
._1a{width:66.423091pt;}
._18{width:75.843789pt;}
._17{width:87.751168pt;}
._27{width:89.213528pt;}
._26{width:95.834414pt;}
._16{width:125.433958pt;}
._20{width:129.594368pt;}
._21{width:131.854295pt;}
._1b{width:137.389158pt;}
._29{width:142.803908pt;}
._1e{width:160.869171pt;}
._1d{width:172.824371pt;}
._25{width:181.984924pt;}
._1c{width:184.731750pt;}
._1f{width:199.221453pt;}
._28{width:214.183625pt;}
._2b{width:1831.079733pt;}
._f{width:1852.333067pt;}
.fsb{font-size:34.590048pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fsc{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:44.473344pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:3.044747pt;}
.y10{bottom:12.578910pt;}
.y2{bottom:14.386570pt;}
.y2f{bottom:56.693333pt;}
.yc3{bottom:93.702667pt;}
.ybd{bottom:96.544000pt;}
.yd1{bottom:97.340000pt;}
.y10e{bottom:104.716000pt;}
.yd0{bottom:106.452000pt;}
.yea{bottom:108.149333pt;}
.y2e{bottom:108.761333pt;}
.yc2{bottom:110.798667pt;}
.y60{bottom:111.620000pt;}
.y12c{bottom:113.760000pt;}
.ybc{bottom:114.556000pt;}
.y10d{bottom:122.729333pt;}
.ye9{bottom:126.161333pt;}
.y2d{bottom:126.773333pt;}
.yc1{bottom:127.893333pt;}
.y5f{bottom:129.633333pt;}
.y12b{bottom:130.976000pt;}
.y15f{bottom:131.281333pt;}
.y10c{bottom:140.741333pt;}
.ybb{bottom:143.861333pt;}
.ye8{bottom:144.174667pt;}
.y2c{bottom:144.786667pt;}
.ycf{bottom:144.921333pt;}
.yc0{bottom:144.989333pt;}
.y5e{bottom:147.645333pt;}
.y12a{bottom:148.190667pt;}
.y15e{bottom:148.497333pt;}
.y9f{bottom:155.494667pt;}
.y10b{bottom:158.754667pt;}
.yba{bottom:160.957333pt;}
.ye7{bottom:162.186667pt;}
.y2b{bottom:162.798667pt;}
.y80{bottom:163.590667pt;}
.y129{bottom:165.406667pt;}
.y5d{bottom:165.657333pt;}
.y15d{bottom:165.713333pt;}
.yf7{bottom:174.406667pt;}
.yf9{bottom:176.017333pt;}
.yce{bottom:176.032000pt;}
.y10a{bottom:176.766667pt;}
.yb9{bottom:178.053333pt;}
.ye6{bottom:180.200000pt;}
.y2a{bottom:180.810667pt;}
.y7f{bottom:181.602667pt;}
.y128{bottom:182.621333pt;}
.y15c{bottom:182.928000pt;}
.y5c{bottom:183.670667pt;}
.y9e{bottom:188.518667pt;}
.yf6{bottom:192.418667pt;}
.yf8{bottom:193.113333pt;}
.ycd{bottom:193.128000pt;}
.y109{bottom:194.778667pt;}
.ye5{bottom:198.212000pt;}
.y29{bottom:198.824000pt;}
.y7e{bottom:199.616000pt;}
.y127{bottom:199.837333pt;}
.y15b{bottom:200.144000pt;}
.y9d{bottom:206.530667pt;}
.y5b{bottom:209.653333pt;}
.ycc{bottom:210.224000pt;}
.yf5{bottom:210.430667pt;}
.y108{bottom:212.792000pt;}
.ye4{bottom:216.224000pt;}
.y28{bottom:216.836000pt;}
.y126{bottom:217.053333pt;}
.y15a{bottom:217.358667pt;}
.y7d{bottom:217.628000pt;}
.y9c{bottom:224.542667pt;}
.yf4{bottom:228.444000pt;}
.y107{bottom:232.628000pt;}
.ye3{bottom:234.237333pt;}
.y125{bottom:234.268000pt;}
.y159{bottom:234.574667pt;}
.y27{bottom:234.849333pt;}
.y5a{bottom:240.604000pt;}
.y106{bottom:241.740000pt;}
.y9b{bottom:242.556000pt;}
.y7c{bottom:243.610667pt;}
.yf3{bottom:246.456000pt;}
.y124{bottom:251.484000pt;}
.y158{bottom:251.790667pt;}
.y26{bottom:252.861333pt;}
.y9a{bottom:260.568000pt;}
.yf2{bottom:264.469333pt;}
.ye2{bottom:265.348000pt;}
.y123{bottom:268.698667pt;}
.y157{bottom:269.005333pt;}
.y25{bottom:270.873333pt;}
.y59{bottom:271.554667pt;}
.y7b{bottom:274.561333pt;}
.y98{bottom:278.581333pt;}
.y105{bottom:280.162667pt;}
.ye1{bottom:282.444000pt;}
.yf1{bottom:282.481333pt;}
.y99{bottom:283.402667pt;}
.y122{bottom:285.914667pt;}
.y156{bottom:286.221333pt;}
.y24{bottom:288.886667pt;}
.y58{bottom:289.566667pt;}
.y7a{bottom:292.573333pt;}
.y97{bottom:296.593333pt;}
.yf0{bottom:300.493333pt;}
.y121{bottom:303.130667pt;}
.y155{bottom:303.437333pt;}
.y23{bottom:306.898667pt;}
.y57{bottom:307.580000pt;}
.y79{bottom:310.586667pt;}
.y104{bottom:313.185333pt;}
.y96{bottom:314.605333pt;}
.yef{bottom:318.506667pt;}
.y120{bottom:320.345333pt;}
.y154{bottom:320.652000pt;}
.y22{bottom:324.912000pt;}
.y56{bottom:325.592000pt;}
.y78{bottom:328.598667pt;}
.y103{bottom:331.197333pt;}
.y94{bottom:332.618667pt;}
.yee{bottom:336.518667pt;}
.y95{bottom:337.440000pt;}
.y11f{bottom:337.561333pt;}
.y153{bottom:337.868000pt;}
.y21{bottom:342.924000pt;}
.y55{bottom:343.604000pt;}
.y77{bottom:346.610667pt;}
.y102{bottom:349.210667pt;}
.y93{bottom:350.630667pt;}
.y11e{bottom:354.776000pt;}
.y152{bottom:355.082667pt;}
.y20{bottom:360.936000pt;}
.y54{bottom:361.617333pt;}
.yed{bottom:362.501333pt;}
.y76{bottom:364.624000pt;}
.y101{bottom:367.222667pt;}
.y92{bottom:368.644000pt;}
.y11d{bottom:371.992000pt;}
.y151{bottom:372.298667pt;}
.y53{bottom:379.629333pt;}
.y75{bottom:382.636000pt;}
.y100{bottom:385.236000pt;}
.y91{bottom:386.656000pt;}
.y1f{bottom:386.918667pt;}
.y11c{bottom:389.208000pt;}
.y150{bottom:389.514667pt;}
.yec{bottom:390.610667pt;}
.y52{bottom:397.642667pt;}
.y74{bottom:400.649333pt;}
.y14f{bottom:406.729333pt;}
.yeb{bottom:407.706667pt;}
.y90{bottom:412.638667pt;}
.y11b{bottom:414.393333pt;}
.y51{bottom:415.654667pt;}
.yff{bottom:416.346667pt;}
.y73{bottom:418.661333pt;}
.y14e{bottom:423.945333pt;}
.yfe{bottom:433.442667pt;}
.y50{bottom:433.666667pt;}
.y71{bottom:436.673333pt;}
.y14d{bottom:441.160000pt;}
.y72{bottom:441.496000pt;}
.y8f{bottom:443.589333pt;}
.y11a{bottom:449.461333pt;}
.y4f{bottom:451.680000pt;}
.y70{bottom:454.686667pt;}
.y1e{bottom:454.844000pt;}
.y14c{bottom:458.376000pt;}
.y8d{bottom:461.601333pt;}
.ybf{bottom:463.821333pt;}
.y8e{bottom:466.424000pt;}
.y4e{bottom:469.692000pt;}
.y119{bottom:470.941333pt;}
.y6f{bottom:472.698667pt;}
.y1d{bottom:472.857333pt;}
.y14b{bottom:475.592000pt;}
.y8c{bottom:479.614667pt;}
.ybe{bottom:480.917333pt;}
.y118{bottom:484.450667pt;}
.y4d{bottom:487.704000pt;}
.y14a{bottom:492.806667pt;}
.y8b{bottom:497.626667pt;}
.y117{bottom:497.960000pt;}
.y4c{bottom:505.717333pt;}
.y1c{bottom:506.809333pt;}
.y149{bottom:510.022667pt;}
.y6e{bottom:514.702667pt;}
.y8a{bottom:515.638667pt;}
.y116{bottom:519.438667pt;}
.y4b{bottom:523.729333pt;}
.y1b{bottom:524.822667pt;}
.y148{bottom:527.237333pt;}
.y6d{bottom:529.632000pt;}
.y89{bottom:533.652000pt;}
.yb8{bottom:539.765333pt;}
.y115{bottom:540.918667pt;}
.y4a{bottom:541.742667pt;}
.y147{bottom:542.064000pt;}
.y1a{bottom:542.834667pt;}
.y146{bottom:544.453333pt;}
.y6c{bottom:550.962667pt;}
.y114{bottom:554.428000pt;}
.yb7{bottom:557.778667pt;}
.y88{bottom:559.634667pt;}
.y49{bottom:559.754667pt;}
.y19{bottom:560.846667pt;}
.y145{bottom:561.669333pt;}
.y113{bottom:567.937333pt;}
.yb6{bottom:575.790667pt;}
.y48{bottom:577.766667pt;}
.y18{bottom:578.860000pt;}
.y144{bottom:578.884000pt;}
.y6b{bottom:579.069333pt;}
.y112{bottom:581.446667pt;}
.y87{bottom:590.585333pt;}
.yb5{bottom:593.802667pt;}
.y47{bottom:595.780000pt;}
.y143{bottom:596.100000pt;}
.y17{bottom:596.872000pt;}
.y6a{bottom:608.590667pt;}
.y86{bottom:608.597333pt;}
.y111{bottom:610.896000pt;}
.yb4{bottom:611.816000pt;}
.y142{bottom:613.314667pt;}
.y46{bottom:613.792000pt;}
.y16{bottom:614.885333pt;}
.y69{bottom:626.602667pt;}
.y85{bottom:626.610667pt;}
.ycb{bottom:628.678667pt;}
.y110{bottom:628.909333pt;}
.yb3{bottom:629.828000pt;}
.y141{bottom:630.530667pt;}
.y45{bottom:631.805333pt;}
.y15{bottom:632.897333pt;}
.y68{bottom:644.616000pt;}
.y84{bottom:644.622667pt;}
.yca{bottom:646.690667pt;}
.ye0{bottom:646.921333pt;}
.y140{bottom:647.746667pt;}
.yb2{bottom:647.841333pt;}
.y44{bottom:649.817333pt;}
.y14{bottom:650.909333pt;}
.y67{bottom:662.628000pt;}
.y83{bottom:662.634667pt;}
.yc9{bottom:664.704000pt;}
.ydf{bottom:664.934667pt;}
.y13f{bottom:664.961333pt;}
.yb1{bottom:665.853333pt;}
.y43{bottom:667.829333pt;}
.y13{bottom:668.922667pt;}
.y66{bottom:680.641333pt;}
.y13e{bottom:682.177333pt;}
.yc8{bottom:682.716000pt;}
.yde{bottom:682.946667pt;}
.yaf{bottom:683.865333pt;}
.y42{bottom:685.842667pt;}
.y12{bottom:686.934667pt;}
.yb0{bottom:688.688000pt;}
.y82{bottom:693.746667pt;}
.y65{bottom:698.653333pt;}
.y13d{bottom:699.392000pt;}
.yc7{bottom:700.729333pt;}
.ydd{bottom:700.958667pt;}
.yae{bottom:701.878667pt;}
.y41{bottom:703.854667pt;}
.y81{bottom:710.842667pt;}
.y13c{bottom:716.608000pt;}
.y64{bottom:716.665333pt;}
.yf{bottom:718.430634pt;}
.yc6{bottom:718.741333pt;}
.ydc{bottom:718.972000pt;}
.ye{bottom:719.112000pt;}
.yad{bottom:719.890667pt;}
.y40{bottom:721.868000pt;}
.y13b{bottom:733.824000pt;}
.y63{bottom:734.678667pt;}
.yc5{bottom:736.753333pt;}
.ydb{bottom:736.984000pt;}
.y3f{bottom:739.880000pt;}
.yac{bottom:745.873333pt;}
.y13a{bottom:751.038667pt;}
.y62{bottom:752.690667pt;}
.yd{bottom:753.784000pt;}
.yda{bottom:754.997333pt;}
.y3e{bottom:757.892000pt;}
.yc4{bottom:767.865333pt;}
.y139{bottom:768.254667pt;}
.yd9{bottom:773.009333pt;}
.yc{bottom:774.262667pt;}
.y3d{bottom:775.905333pt;}
.yab{bottom:776.824000pt;}
.y61{bottom:783.802667pt;}
.y138{bottom:785.469333pt;}
.yb{bottom:786.062667pt;}
.yd8{bottom:791.021333pt;}
.y3c{bottom:793.917333pt;}
.y137{bottom:802.685333pt;}
.ya{bottom:806.541333pt;}
.yaa{bottom:807.774667pt;}
.yd7{bottom:809.034667pt;}
.y3b{bottom:811.930667pt;}
.y9{bottom:818.341333pt;}
.y136{bottom:819.901333pt;}
.y162{bottom:825.126667pt;}
.ya9{bottom:825.788000pt;}
.yd6{bottom:827.046667pt;}
.y3a{bottom:829.942667pt;}
.y135{bottom:837.116000pt;}
.y8{bottom:838.821333pt;}
.y161{bottom:842.341333pt;}
.ya7{bottom:843.800000pt;}
.yd5{bottom:845.060000pt;}
.y39{bottom:847.954667pt;}
.ya8{bottom:848.621333pt;}
.yfd{bottom:849.437333pt;}
.yfc{bottom:853.960000pt;}
.y134{bottom:854.332000pt;}
.y7{bottom:858.590667pt;}
.y160{bottom:859.557333pt;}
.yd4{bottom:863.072000pt;}
.y38{bottom:865.968000pt;}
.ya6{bottom:870.818667pt;}
.y10f{bottom:871.042667pt;}
.y133{bottom:871.546667pt;}
.yd3{bottom:881.084000pt;}
.y37{bottom:883.980000pt;}
.yfb{bottom:886.982667pt;}
.y132{bottom:888.762667pt;}
.ya5{bottom:888.832000pt;}
.y6{bottom:898.178667pt;}
.y36{bottom:901.993333pt;}
.ya4{bottom:904.357333pt;}
.y131{bottom:905.978667pt;}
.ya3{bottom:906.844000pt;}
.yd2{bottom:907.066667pt;}
.y35{bottom:920.005333pt;}
.y130{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.yfa{bottom:935.532000pt;}
.y34{bottom:938.017333pt;}
.y12f{bottom:940.409333pt;}
.ya2{bottom:946.477947pt;}
.y4{bottom:952.217333pt;}
.y33{bottom:956.030667pt;}
.y12e{bottom:957.624000pt;}
.ya1{bottom:966.316707pt;}
.y32{bottom:974.042667pt;}
.y12d{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y31{bottom:992.056000pt;}
.ya0{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.h7{height:27.188522pt;}
.h11{height:28.792271pt;}
.hb{height:29.433775pt;}
.h13{height:29.519145pt;}
.ha{height:30.399505pt;}
.he{height:31.157778pt;}
.h16{height:32.020808pt;}
.h17{height:32.510014pt;}
.h23{height:33.378918pt;}
.h27{height:33.713664pt;}
.h25{height:34.144051pt;}
.h26{height:34.191872pt;}
.h10{height:34.430976pt;}
.h8{height:34.957005pt;}
.h24{height:35.052646pt;}
.hf{height:37.087439pt;}
.h1c{height:37.299974pt;}
.h12{height:37.884447pt;}
.hc{height:38.256384pt;}
.hd{height:38.840857pt;}
.h4{height:38.947124pt;}
.h1e{height:41.524400pt;}
.h15{height:42.084400pt;}
.h2{height:45.271688pt;}
.h19{height:48.077604pt;}
.h6{height:48.365611pt;}
.h14{height:48.804478pt;}
.h1f{height:50.952271pt;}
.h18{height:53.723733pt;}
.h1d{height:58.024271pt;}
.h5{height:68.861952pt;}
.h20{height:71.809067pt;}
.h21{height:74.814190pt;}
.h1a{height:74.920458pt;}
.h1b{height:75.288857pt;}
.h22{height:87.405604pt;}
.h3{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:139.658538pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:50.072671pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x56{left:117.643587pt;}
.x4{left:129.929333pt;}
.x5f{left:136.318667pt;}
.x41{left:142.094667pt;}
.x42{left:146.769333pt;}
.x32{left:148.554667pt;}
.x76{left:150.285333pt;}
.x40{left:151.228000pt;}
.x33{left:152.610667pt;}
.x55{left:164.097333pt;}
.x34{left:165.894667pt;}
.x8{left:167.868000pt;}
.x35{left:169.149333pt;}
.x8b{left:170.081333pt;}
.x6f{left:173.909333pt;}
.x60{left:176.488000pt;}
.x9{left:180.729333pt;}
.x24{left:181.938667pt;}
.x61{left:184.692000pt;}
.x36{left:185.686667pt;}
.x25{left:188.581333pt;}
.x8c{left:191.092000pt;}
.x6e{left:192.402667pt;}
.x6d{left:196.968000pt;}
.x37{left:198.970667pt;}
.x8d{left:200.465333pt;}
.x8e{left:205.780000pt;}
.x7f{left:215.570667pt;}
.x94{left:223.704000pt;}
.x96{left:225.868000pt;}
.x7e{left:227.025333pt;}
.x95{left:237.545333pt;}
.xe{left:248.985333pt;}
.xf{left:255.628000pt;}
.x10{left:262.276000pt;}
.x43{left:266.840000pt;}
.x11{left:268.917333pt;}
.x44{left:272.784000pt;}
.x70{left:277.373333pt;}
.x5a{left:285.300000pt;}
.x71{left:288.906667pt;}
.x5b{left:296.810667pt;}
.x54{left:300.278667pt;}
.x3a{left:306.310667pt;}
.x3b{left:312.289333pt;}
.x59{left:314.197333pt;}
.x7b{left:317.329333pt;}
.x62{left:320.602667pt;}
.x57{left:324.789333pt;}
.x78{left:327.893333pt;}
.x77{left:330.742667pt;}
.x58{left:337.278667pt;}
.x88{left:338.433333pt;}
.x7a{left:341.064000pt;}
.x69{left:341.957333pt;}
.x47{left:345.460000pt;}
.x6a{left:349.262667pt;}
.x6b{left:355.216000pt;}
.x48{left:356.930667pt;}
.x6c{left:361.193333pt;}
.x49{left:366.176000pt;}
.x4a{left:377.646667pt;}
.x67{left:386.580000pt;}
.x5c{left:388.358667pt;}
.x68{left:392.557333pt;}
.x52{left:394.566667pt;}
.x7c{left:397.016000pt;}
.x53{left:400.510667pt;}
.x63{left:401.409333pt;}
.x81{left:408.214667pt;}
.x4b{left:411.161333pt;}
.x4c{left:416.873333pt;}
.x79{left:421.986667pt;}
.x45{left:436.056000pt;}
.x72{left:437.337333pt;}
.x73{left:447.462667pt;}
.x46{left:449.340000pt;}
.x3c{left:470.197333pt;}
.x2c{left:473.906667pt;}
.x64{left:474.912000pt;}
.x3d{left:477.502667pt;}
.x65{left:480.220000pt;}
.x2d{left:487.189333pt;}
.x86{left:502.688000pt;}
.x22{left:506.804000pt;}
.x84{left:509.368000pt;}
.x28{left:512.109333pt;}
.x23{left:520.086667pt;}
.x29{left:525.393333pt;}
.x87{left:526.598667pt;}
.x2a{left:528.780000pt;}
.x12{left:531.285333pt;}
.x13{left:537.926667pt;}
.x2b{left:542.064000pt;}
.x38{left:546.326667pt;}
.x4d{left:550.776000pt;}
.x2e{left:551.818667pt;}
.x91{left:553.410667pt;}
.x39{left:554.530667pt;}
.x74{left:555.790667pt;}
.x7d{left:558.244000pt;}
.x4e{left:560.649333pt;}
.x75{left:561.768000pt;}
.x2f{left:565.102667pt;}
.x85{left:566.122667pt;}
.x66{left:567.124000pt;}
.x1a{left:568.785333pt;}
.x4f{left:572.860000pt;}
.x20{left:574.024000pt;}
.x1b{left:575.426667pt;}
.x1c{left:578.681333pt;}
.x21{left:587.308000pt;}
.xa{left:589.684000pt;}
.x1d{left:591.964000pt;}
.x1e{left:595.218667pt;}
.xb{left:596.326667pt;}
.x82{left:598.432000pt;}
.x92{left:600.860000pt;}
.xc{left:603.101333pt;}
.x50{left:605.864000pt;}
.x1f{left:608.502667pt;}
.xd{left:609.742667pt;}
.x14{left:611.474667pt;}
.x51{left:614.900000pt;}
.x15{left:618.117333pt;}
.x16{left:621.377333pt;}
.x83{left:622.341333pt;}
.x6{left:623.413317pt;}
.x93{left:624.770667pt;}
.x80{left:626.796000pt;}
.x17{left:634.661333pt;}
.x18{left:637.922667pt;}
.x5d{left:645.152000pt;}
.x19{left:651.205333pt;}
.x5e{left:653.357333pt;}
.x8f{left:666.237333pt;}
.x3e{left:670.693333pt;}
.x26{left:672.796000pt;}
.x30{left:673.950667pt;}
.x3f{left:678.898667pt;}
.x89{left:681.816000pt;}
.x8a{left:685.140000pt;}
.x27{left:686.078667pt;}
.x31{left:687.234667pt;}
.x90{left:690.146667pt;}
}




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