
    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_2574a207bd02f40be13e4084.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_901a1b36b7f32a8be664564e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_4e79da18887bc51b8742a178.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_772d66b8bd0f20ee6471789f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c7819b41ee348ebb7e207be7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d2e836f0c21bdca800ff8145.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2cc338ac8f4bc4c13faa46b9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8ab6a6fac95830d452bb6750.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.636000;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_a0cd703165aef2ee4a5fb1db.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.899000;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_6ab44a9296839ef78454ddf4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b0b00b7dfe6805fd4dc4325a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.684000;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_a59f803551a000e712220c54.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fe64b98a3f5edd01c7eb922d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4842df571e88bc3c5171a373.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4f49e23e2f1ddce94d4fc17b.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d1196101a4d14e2c42455e74.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_400c4e7530d4962e61b7ff92.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9deae6289d14bca7844ba094.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.883000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_85cfcf285397ca1798cbfe51.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4b5ee6a2767eaa4ee7bc90a3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5e1a35d5628b1d6a3df0452c.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_d02f5545301c3c04c71780cc.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_b0b00b7dfe6805fd4dc4325a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.684000;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:ff18;src:url('chunks/assets/font_94fd3fcd05fa9109d2b93a27.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.917000;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:ff19;src:url('chunks/assets/font_a8b6828ccc2c4a0e5891b562.woff2')format("woff");}.ff19{font-family:ff19;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.mf{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);}
.m13{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);}
.m12{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);}
.m5{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);}
.m17{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);}
.m4{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);}
.m6{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);}
.m8{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);}
.m11{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);}
.m14{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);}
.m9{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);}
.mb{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.md{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.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.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.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);}
.ma{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);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v3{vertical-align:-22.854000px;}
.v2{vertical-align:-12.912000px;}
.vc{vertical-align:-9.822000px;}
.v7{vertical-align:-6.768000px;}
.v11{vertical-align:-1.326000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.456000px;}
.v9{vertical-align:8.724000px;}
.v10{vertical-align:14.778000px;}
.vb{vertical-align:16.332000px;}
.v8{vertical-align:19.386000px;}
.v4{vertical-align:23.754000px;}
.v5{vertical-align:27.024000px;}
.va{vertical-align:31.848000px;}
.ve{vertical-align:35.082000px;}
.vd{vertical-align:44.280000px;}
.v6{vertical-align:58.206000px;}
.vf{vertical-align:89.178000px;}
.ls3{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.001597px;}
.ls2e{letter-spacing:0.001599px;}
.ls5f{letter-spacing:0.002413px;}
.ls2f{letter-spacing:0.002682px;}
.ls23{letter-spacing:0.002688px;}
.ls43{letter-spacing:0.004379px;}
.ls22{letter-spacing:0.007465px;}
.ls61{letter-spacing:0.008059px;}
.ls69{letter-spacing:0.009663px;}
.ls63{letter-spacing:0.011151px;}
.ls58{letter-spacing:0.011455px;}
.ls17{letter-spacing:0.017372px;}
.ls56{letter-spacing:0.017610px;}
.ls6c{letter-spacing:0.018814px;}
.ls51{letter-spacing:0.019218px;}
.ls6f{letter-spacing:0.327273px;}
.ls25{letter-spacing:0.563163px;}
.ls48{letter-spacing:0.587531px;}
.ls27{letter-spacing:0.629774px;}
.ls1e{letter-spacing:0.631590px;}
.ls1b{letter-spacing:0.637590px;}
.ls4d{letter-spacing:0.658580px;}
.ls8{letter-spacing:1.721542px;}
.ls65{letter-spacing:2.205747px;}
.ls64{letter-spacing:2.205817px;}
.ls5e{letter-spacing:2.208873px;}
.ls49{letter-spacing:2.356366px;}
.ls18{letter-spacing:2.984915px;}
.ls4f{letter-spacing:2.988458px;}
.ls55{letter-spacing:2.988710px;}
.ls35{letter-spacing:2.989739px;}
.ls46{letter-spacing:2.990915px;}
.ls70{letter-spacing:3.665458px;}
.ls67{letter-spacing:4.211396px;}
.ls7{letter-spacing:4.265644px;}
.ls9{letter-spacing:5.105459px;}
.ls1d{letter-spacing:5.232364px;}
.ls10{letter-spacing:5.273392px;}
.lse{letter-spacing:5.302759px;}
.ls4e{letter-spacing:5.306529px;}
.ls5{letter-spacing:5.311591px;}
.lsa{letter-spacing:5.325615px;}
.ls29{letter-spacing:5.330089px;}
.ls1a{letter-spacing:5.808810px;}
.ls45{letter-spacing:6.235481px;}
.ls3d{letter-spacing:6.725578px;}
.ls5c{letter-spacing:9.794059px;}
.ls31{letter-spacing:10.930918px;}
.ls5b{letter-spacing:12.008341px;}
.ls5a{letter-spacing:12.264632px;}
.ls28{letter-spacing:13.810921px;}
.ls16{letter-spacing:14.530921px;}
.ls1c{letter-spacing:14.596376px;}
.ls6b{letter-spacing:14.691088px;}
.ls59{letter-spacing:15.727993px;}
.ls57{letter-spacing:16.910469px;}
.ls12{letter-spacing:17.476378px;}
.ls15{letter-spacing:17.528915px;}
.ls3b{letter-spacing:17.534915px;}
.ls20{letter-spacing:17.738197px;}
.ls14{letter-spacing:18.196379px;}
.ls62{letter-spacing:18.452058px;}
.ls21{letter-spacing:18.785470px;}
.ls2b{letter-spacing:19.505471px;}
.ls44{letter-spacing:19.590710px;}
.ls42{letter-spacing:19.596710px;}
.lsd{letter-spacing:19.767289px;}
.ls5d{letter-spacing:19.855288px;}
.ls54{letter-spacing:19.905275px;}
.lsc{letter-spacing:19.963653px;}
.ls4b{letter-spacing:20.487290px;}
.ls3f{letter-spacing:21.164915px;}
.ls30{letter-spacing:21.169739px;}
.ls41{letter-spacing:21.170915px;}
.ls3c{letter-spacing:21.172059px;}
.ls4{letter-spacing:21.419468px;}
.ls2d{letter-spacing:21.469109px;}
.ls13{letter-spacing:21.665473px;}
.ls37{letter-spacing:21.719412px;}
.ls26{letter-spacing:21.796382px;}
.ls6{letter-spacing:21.861836px;}
.ls24{letter-spacing:21.927291px;}
.ls72{letter-spacing:22.058200px;}
.ls2a{letter-spacing:22.189109px;}
.lsf{letter-spacing:22.320019px;}
.ls53{letter-spacing:22.914710px;}
.ls2c{letter-spacing:23.301838px;}
.ls19{letter-spacing:23.994810px;}
.ls36{letter-spacing:24.811739px;}
.ls6d{letter-spacing:25.723658px;}
.ls11{letter-spacing:26.509113px;}
.ls6e{letter-spacing:26.901841px;}
.ls71{letter-spacing:26.967295px;}
.ls1f{letter-spacing:28.407296px;}
.ls4c{letter-spacing:29.454570px;}
.lsb{letter-spacing:29.781843px;}
.ls40{letter-spacing:29.912752px;}
.ls33{letter-spacing:30.043661px;}
.ls47{letter-spacing:30.436389px;}
.ls3a{letter-spacing:31.250700px;}
.ls38{letter-spacing:31.256700px;}
.ls2{letter-spacing:33.839194px;}
.ls34{letter-spacing:35.869121px;}
.ls1{letter-spacing:35.883533px;}
.ls4a{letter-spacing:68.438915px;}
.ls68{letter-spacing:142.629906px;}
.ls50{letter-spacing:178.310474px;}
.ls60{letter-spacing:179.282945px;}
.ls52{letter-spacing:181.288362px;}
.ls66{letter-spacing:295.057048px;}
.ls6a{letter-spacing:295.158271px;}
.ls0{letter-spacing:345.347589px;}
.ls3e{letter-spacing:399.796697px;}
.ls32{letter-spacing:759.273360px;}
.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;}
}
.ws62{word-spacing:-65.454600px;}
.ws56{word-spacing:-54.589136px;}
.ws40{word-spacing:-50.923679px;}
.ws61{word-spacing:-47.323676px;}
.ws3e{word-spacing:-47.258221px;}
.ws32{word-spacing:-42.637126px;}
.ws59{word-spacing:-38.937826px;}
.ws31{word-spacing:-36.379667px;}
.ws36{word-spacing:-32.727300px;}
.ws55{word-spacing:-32.714209px;}
.ws26{word-spacing:-31.771663px;}
.ws19{word-spacing:-31.706208px;}
.ws66{word-spacing:-29.887800px;}
.ws5b{word-spacing:-29.015076px;}
.ws12{word-spacing:-28.955301px;}
.ws6c{word-spacing:-28.738062px;}
.ws4e{word-spacing:-24.506202px;}
.ws74{word-spacing:-23.421664px;}
.ws6e{word-spacing:-21.370460px;}
.ws34{word-spacing:-18.183288px;}
.ws2c{word-spacing:-17.607287px;}
.ws5c{word-spacing:-16.605662px;}
.ws2e{word-spacing:-15.316376px;}
.ws2d{word-spacing:-15.250922px;}
.ws37{word-spacing:-14.989103px;}
.ws7a{word-spacing:-14.465695px;}
.ws41{word-spacing:-14.111859px;}
.ws5d{word-spacing:-13.808164px;}
.ws49{word-spacing:-13.221829px;}
.ws72{word-spacing:-12.829102px;}
.ws63{word-spacing:-12.763647px;}
.ws75{word-spacing:-12.632738px;}
.ws47{word-spacing:-12.567283px;}
.ws58{word-spacing:-12.501829px;}
.ws4f{word-spacing:-12.436374px;}
.ws6d{word-spacing:-12.255809px;}
.ws1f{word-spacing:-12.240010px;}
.ws5e{word-spacing:-12.109101px;}
.ws53{word-spacing:-12.043646px;}
.ws29{word-spacing:-11.978192px;}
.ws44{word-spacing:-11.912737px;}
.ws38{word-spacing:-11.716373px;}
.ws77{word-spacing:-11.596466px;}
.ws1c{word-spacing:-11.476915px;}
.ws76{word-spacing:-11.454555px;}
.ws70{word-spacing:-11.389100px;}
.ws20{word-spacing:-11.323646px;}
.ws4a{word-spacing:-11.258191px;}
.ws64{word-spacing:-11.192737px;}
.ws1d{word-spacing:-11.127282px;}
.ws30{word-spacing:-11.061827px;}
.ws67{word-spacing:-10.996373px;}
.ws18{word-spacing:-10.930918px;}
.ws1a{word-spacing:-10.865464px;}
.ws25{word-spacing:-10.800009px;}
.ws3b{word-spacing:-10.734554px;}
.ws1e{word-spacing:-10.669100px;}
.ws48{word-spacing:-10.603645px;}
.ws46{word-spacing:-10.538191px;}
.ws50{word-spacing:-10.472736px;}
.ws2a{word-spacing:-10.407281px;}
.ws13{word-spacing:-10.400954px;}
.ws11{word-spacing:-10.341179px;}
.ws2f{word-spacing:-10.276372px;}
.wse{word-spacing:-10.221628px;}
.wsd{word-spacing:-10.102076px;}
.ws4{word-spacing:-9.982525px;}
.ws22{word-spacing:-9.949099px;}
.ws7b{word-spacing:-9.922750px;}
.ws17{word-spacing:-9.883645px;}
.ws15{word-spacing:-9.803198px;}
.wsf{word-spacing:-9.623872px;}
.ws51{word-spacing:-9.621826px;}
.ws10{word-spacing:-9.564096px;}
.ws52{word-spacing:-9.556372px;}
.ws4b{word-spacing:-9.163644px;}
.ws3a{word-spacing:-9.032735px;}
.ws71{word-spacing:-8.901826px;}
.ws23{word-spacing:-8.116370px;}
.ws6b{word-spacing:-7.367603px;}
.ws6a{word-spacing:-7.323485px;}
.ws16{word-spacing:-7.200006px;}
.ws73{word-spacing:-7.003642px;}
.ws14{word-spacing:-6.754643px;}
.ws69{word-spacing:-5.760005px;}
.ws35{word-spacing:-4.320004px;}
.ws6f{word-spacing:-3.885414px;}
.ws7c{word-spacing:-3.825638px;}
.ws68{word-spacing:-3.600003px;}
.ws2{word-spacing:-0.086077px;}
.ws43{word-spacing:-0.065455px;}
.ws7e{word-spacing:-0.059776px;}
.ws7{word-spacing:-0.053798px;}
.ws27{word-spacing:-0.052364px;}
.ws28{word-spacing:-0.047821px;}
.ws9{word-spacing:0.000000px;}
.ws3d{word-spacing:0.002494px;}
.ws5a{word-spacing:0.011955px;}
.ws33{word-spacing:0.013091px;}
.ws45{word-spacing:0.340364px;}
.wsa{word-spacing:2.683639px;}
.ws3c{word-spacing:3.613094px;}
.ws54{word-spacing:3.678549px;}
.ws4d{word-spacing:6.673496px;}
.ws6{word-spacing:9.145728px;}
.wsb{word-spacing:11.429123px;}
.ws3f{word-spacing:15.212159px;}
.ws60{word-spacing:15.218159px;}
.ws4c{word-spacing:17.584552px;}
.ws5{word-spacing:18.345254px;}
.ws8{word-spacing:18.399053px;}
.ws78{word-spacing:19.905275px;}
.ws79{word-spacing:21.339889px;}
.ws39{word-spacing:22.647292px;}
.ws42{word-spacing:23.367292px;}
.ws1{word-spacing:23.384371px;}
.ws2b{word-spacing:23.760020px;}
.ws5f{word-spacing:24.087293px;}
.ws21{word-spacing:24.152747px;}
.wsc{word-spacing:25.464406px;}
.ws24{word-spacing:25.920022px;}
.ws3{word-spacing:26.827469px;}
.ws7d{word-spacing:26.958796px;}
.ws0{word-spacing:32.192873px;}
.ws57{word-spacing:99.137537px;}
.ws65{word-spacing:148.402404px;}
.ws1b{word-spacing:2229.132812px;}
._1e{margin-left:-18.196379px;}
._32{margin-left:-16.872941px;}
._1{margin-left:-5.881958px;}
._4{margin-left:-4.285973px;}
._5{margin-left:-2.988780px;}
._2{margin-left:-1.673717px;}
._3{width:1.506355px;}
._0{width:2.668393px;}
._1b{width:4.707591px;}
._1f{width:6.298718px;}
._20{width:14.371909px;}
._2c{width:18.271183px;}
._33{width:19.337459px;}
._8{width:21.591333px;}
._23{width:22.843681px;}
._7{width:24.531876px;}
._1c{width:25.689627px;}
._6{width:26.719693px;}
._21{width:27.901301px;}
._17{width:29.467991px;}
._24{width:30.566399px;}
._1d{width:31.614572px;}
._25{width:32.698298px;}
._19{width:33.905483px;}
._2d{width:35.379396px;}
._31{width:45.630311px;}
._2a{width:47.246972px;}
._1a{width:51.406891px;}
._2b{width:55.058492px;}
._18{width:64.874801px;}
._16{width:68.741940px;}
._30{width:76.801997px;}
._2f{width:105.925833px;}
._22{width:141.802304px;}
._27{width:164.510972px;}
._26{width:178.290707px;}
._2e{width:260.733725px;}
._28{width:329.777427px;}
._29{width:550.446206px;}
._12{width:1007.214615px;}
._b{width:1218.380404px;}
._15{width:1221.705142px;}
._11{width:1264.698665px;}
._c{width:1278.087856px;}
._a{width:1310.487883px;}
._d{width:1318.043265px;}
._10{width:1360.668556px;}
._e{width:1364.582678px;}
._13{width:1473.995273px;}
._f{width:1753.848341px;}
._14{width:1776.422728px;}
._9{width:1923.862940px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.882079px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs8{font-size:44.117382px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yac{bottom:156.231000px;}
.y46{bottom:160.314000px;}
.y2b{bottom:172.960500px;}
.y45{bottom:190.800000px;}
.y2a{bottom:196.933500px;}
.yab{bottom:198.021000px;}
.ye0{bottom:198.648000px;}
.y92{bottom:201.033000px;}
.yaa{bottom:202.104000px;}
.ydf{bottom:203.494500px;}
.y5f{bottom:221.286000px;}
.y44{bottom:229.791000px;}
.y91{bottom:231.519000px;}
.ya9{bottom:232.590000px;}
.y29{bottom:243.783000px;}
.yde{bottom:246.676500px;}
.y5e{bottom:251.770500px;}
.y43{bottom:257.376000px;}
.ye{bottom:259.473000px;}
.y8f{bottom:261.012000px;}
.y90{bottom:268.191000px;}
.y8e{bottom:272.236500px;}
.ya8{bottom:272.886000px;}
.yc2{bottom:273.031500px;}
.y78{bottom:273.490500px;}
.y42{bottom:276.033000px;}
.ydd{bottom:277.162500px;}
.y5d{bottom:282.256500px;}
.yd{bottom:287.119500px;}
.y28{bottom:290.631000px;}
.ya7{bottom:303.372000px;}
.ydc{bottom:307.647000px;}
.y5c{bottom:312.742500px;}
.y8d{bottom:312.955500px;}
.yc{bottom:314.766000px;}
.y41{bottom:316.518000px;}
.yc1{bottom:332.853000px;}
.y77{bottom:337.029000px;}
.y27{bottom:337.480500px;}
.ydb{bottom:338.133000px;}
.yb{bottom:342.412500px;}
.y40{bottom:347.004000px;}
.ya6{bottom:355.117500px;}
.y5b{bottom:357.529500px;}
.yc0{bottom:363.339000px;}
.y8c{bottom:364.701000px;}
.y76{bottom:367.515000px;}
.ya{bottom:370.059000px;}
.y3f{bottom:377.490000px;}
.y26{bottom:384.330000px;}
.yda{bottom:389.878500px;}
.ybf{bottom:393.823500px;}
.y5a{bottom:402.316500px;}
.y75{bottom:415.240500px;}
.ybe{bottom:424.309500px;}
.y8b{bottom:424.641000px;}
.y3e{bottom:429.235500px;}
.y25{bottom:431.179500px;}
.ya5{bottom:432.532500px;}
.y74{bottom:441.643500px;}
.y73{bottom:445.726500px;}
.yd9{bottom:450.205500px;}
.y59{bottom:454.062000px;}
.y8a{bottom:455.127000px;}
.ya4{bottom:459.432000px;}
.ybd{bottom:476.055000px;}
.y24{bottom:478.029000px;}
.yd8{bottom:480.691500px;}
.y3d{bottom:489.138000px;}
.y9{bottom:491.260500px;}
.y72{bottom:493.452000px;}
.y89{bottom:494.350500px;}
.ya1{bottom:506.256000px;}
.yd7{bottom:511.177500px;}
.ya0{bottom:512.233500px;}
.y58{bottom:514.372500px;}
.y9f{bottom:518.211000px;}
.y3c{bottom:519.624000px;}
.y88{bottom:524.836500px;}
.y23{bottom:524.878500px;}
.y71{bottom:536.763000px;}
.y70{bottom:537.670500px;}
.yd6{bottom:541.662000px;}
.y6f{bottom:541.753500px;}
.y8{bottom:543.672000px;}
.y57{bottom:544.858500px;}
.y3b{bottom:550.110000px;}
.ybc{bottom:554.874000px;}
.y87{bottom:555.322500px;}
.y7{bottom:570.570000px;}
.yd5{bottom:572.148000px;}
.y56{bottom:575.344500px;}
.y22{bottom:576.624000px;}
.y9e{bottom:577.623000px;}
.y3a{bottom:580.596000px;}
.y9d{bottom:581.317500px;}
.ybb{bottom:581.773500px;}
.y6e{bottom:590.055000px;}
.yee{bottom:592.642500px;}
.y86{bottom:594.546000px;}
.y6{bottom:597.469500px;}
.yd4{bottom:602.634000px;}
.y39{bottom:611.082000px;}
.y55{bottom:618.423000px;}
.yed{bottom:619.542000px;}
.y6d{bottom:620.998500px;}
.yb9{bottom:628.896000px;}
.yd3{bottom:633.120000px;}
.ya3{bottom:633.813000px;}
.y21{bottom:636.129000px;}
.y85{bottom:637.908000px;}
.y38{bottom:641.566500px;}
.yec{bottom:646.441500px;}
.y6c{bottom:646.494000px;}
.y9c{bottom:647.221500px;}
.y6b{bottom:651.484500px;}
.yb8{bottom:655.795500px;}
.ya2{bottom:660.712500px;}
.y54{bottom:661.503000px;}
.y20{bottom:666.615000px;}
.y37{bottom:672.052500px;}
.yeb{bottom:673.339500px;}
.yd2{bottom:678.042000px;}
.yba{bottom:680.730000px;}
.y84{bottom:681.268500px;}
.y53{bottom:691.989000px;}
.yea{bottom:700.239000px;}
.y36{bottom:702.538500px;}
.y6a{bottom:703.689000px;}
.yd1{bottom:708.528000px;}
.y9b{bottom:710.992500px;}
.y1f{bottom:724.000500px;}
.y83{bottom:724.630500px;}
.ye9{bottom:727.138500px;}
.y52{bottom:730.221000px;}
.y35{bottom:733.024500px;}
.y51{bottom:735.067500px;}
.yb5{bottom:738.709500px;}
.y5{bottom:748.551000px;}
.y1e{bottom:750.900000px;}
.yd0{bottom:752.709000px;}
.y82{bottom:761.400000px;}
.y34{bottom:763.509000px;}
.y81{bottom:763.854000px;}
.y69{bottom:767.229000px;}
.y9a{bottom:771.027000px;}
.y1d{bottom:777.798000px;}
.y50{bottom:778.147500px;}
.ycf{bottom:783.195000px;}
.y33{bottom:793.995000px;}
.y68{bottom:803.089500px;}
.y80{bottom:804.573000px;}
.y1c{bottom:804.697500px;}
.y99{bottom:817.498500px;}
.y67{bottom:819.921000px;}
.y4f{bottom:821.227500px;}
.yb7{bottom:821.622000px;}
.yce{bottom:827.377500px;}
.y1b{bottom:831.597000px;}
.ye8{bottom:836.229000px;}
.y7f{bottom:845.290500px;}
.y32{bottom:845.740500px;}
.yb6{bottom:848.521500px;}
.ycd{bottom:857.862000px;}
.y1a{bottom:858.496500px;}
.y98{bottom:861.216000px;}
.y4e{bottom:864.306000px;}
.ye7{bottom:866.715000px;}
.y66{bottom:868.222500px;}
.y7e{bottom:875.776500px;}
.y19{bottom:885.394500px;}
.yb4{bottom:891.549000px;}
.y4c{bottom:894.792000px;}
.ye6{bottom:897.201000px;}
.y65{bottom:899.166000px;}
.y4d{bottom:900.730500px;}
.ycc{bottom:902.044500px;}
.y4{bottom:902.547000px;}
.y97{bottom:904.935000px;}
.y31{bottom:905.644500px;}
.y7d{bottom:906.262500px;}
.y18{bottom:912.294000px;}
.yb3{bottom:922.035000px;}
.y64{bottom:929.652000px;}
.ycb{bottom:932.530500px;}
.y3{bottom:933.928500px;}
.y7c{bottom:936.748500px;}
.y17{bottom:939.193500px;}
.ye5{bottom:942.630000px;}
.y96{bottom:945.231000px;}
.y4b{bottom:946.537500px;}
.y30{bottom:952.494000px;}
.yb2{bottom:960.508500px;}
.y63{bottom:960.597000px;}
.y16{bottom:966.093000px;}
.ye4{bottom:973.116000px;}
.yca{bottom:980.761500px;}
.y95{bottom:985.527000px;}
.y7b{bottom:988.494000px;}
.yb1{bottom:990.994500px;}
.y62{bottom:991.083000px;}
.y15{bottom:992.991000px;}
.y2f{bottom:999.342000px;}
.y2{bottom:999.790500px;}
.ye3{bottom:1003.602000px;}
.y4a{bottom:1006.848000px;}
.yc9{bottom:1007.661000px;}
.y14{bottom:1019.890500px;}
.y94{bottom:1027.318500px;}
.yb0{bottom:1029.468000px;}
.y49{bottom:1037.334000px;}
.y61{bottom:1039.384500px;}
.y1{bottom:1040.139000px;}
.yc8{bottom:1040.789951px;}
.y2e{bottom:1046.191500px;}
.y7a{bottom:1048.434000px;}
.ye2{bottom:1049.031000px;}
.y13{bottom:1058.595000px;}
.yc7{bottom:1060.643127px;}
.y12{bottom:1064.019000px;}
.yaf{bottom:1065.354000px;}
.y48{bottom:1067.820000px;}
.y93{bottom:1069.108500px;}
.yae{bottom:1069.437000px;}
.y79{bottom:1078.920000px;}
.yc6{bottom:1080.496303px;}
.y60{bottom:1087.686000px;}
.y10{bottom:1090.725000px;}
.y2d{bottom:1093.041000px;}
.ye1{bottom:1094.461500px;}
.y11{bottom:1096.663500px;}
.yc5{bottom:1100.349479px;}
.yad{bottom:1105.321500px;}
.y47{bottom:1109.404500px;}
.yc4{bottom:1120.201548px;}
.yf{bottom:1139.890500px;}
.yc3{bottom:1140.496447px;}
.y2c{bottom:1192.194000px;}
.hd{height:17.494800px;}
.ha{height:27.783619px;}
.h25{height:33.088036px;}
.h9{height:33.187496px;}
.h11{height:34.191729px;}
.h26{height:36.514005px;}
.h7{height:40.348800px;}
.hc{height:41.842920px;}
.hb{height:42.799330px;}
.h6{height:44.831700px;}
.he{height:46.865494px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h3{height:53.798400px;}
.h21{height:54.183619px;}
.h17{height:56.941496px;}
.h12{height:57.939729px;}
.hf{height:57.945729px;}
.h18{height:58.206000px;}
.h22{height:59.609700px;}
.h13{height:60.163676px;}
.h16{height:60.211496px;}
.h2{height:60.254040px;}
.h10{height:61.215729px;}
.h15{height:61.221729px;}
.h20{height:65.272950px;}
.h23{height:65.422950px;}
.h1a{height:66.033729px;}
.h19{height:66.039729px;}
.h27{height:66.251494px;}
.h28{height:66.364950px;}
.h4{height:67.226503px;}
.h14{height:68.476950px;}
.h1c{height:69.052950px;}
.h24{height:77.547729px;}
.h1b{height:82.365729px;}
.h1d{height:101.221496px;}
.h1f{height:106.119729px;}
.h1e{height:146.119496px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x14{left:108.000000px;}
.x1a{left:110.739000px;}
.x89{left:113.280000px;}
.x19{left:114.363000px;}
.x18{left:120.273000px;}
.x17{left:126.636000px;}
.x13{left:130.416000px;}
.x9c{left:131.625000px;}
.x16{left:132.999000px;}
.x67{left:144.606000px;}
.x1c{left:150.178500px;}
.x40{left:152.832000px;}
.x11{left:158.809500px;}
.x4e{left:159.811500px;}
.x68{left:165.453000px;}
.x94{left:167.803500px;}
.x10{left:173.754000px;}
.x9a{left:174.967500px;}
.x1e{left:179.362500px;}
.x30{left:186.510000px;}
.x3f{left:191.758500px;}
.x6f{left:193.258500px;}
.x4f{left:197.236500px;}
.x9b{left:198.366000px;}
.x95{left:199.780500px;}
.x1{left:201.028500px;}
.x63{left:206.199000px;}
.x4d{left:208.095000px;}
.x44{left:209.133000px;}
.x50{left:212.077500px;}
.xe{left:214.422000px;}
.xf{left:221.125500px;}
.x51{left:223.015500px;}
.x93{left:225.495000px;}
.x64{left:226.642500px;}
.x79{left:231.423000px;}
.x8e{left:237.234000px;}
.x98{left:240.456000px;}
.x6c{left:249.676500px;}
.xb{left:252.858000px;}
.x7a{left:255.651000px;}
.x52{left:271.339500px;}
.x3{left:274.819500px;}
.x53{left:277.722000px;}
.x91{left:278.818500px;}
.x76{left:283.990500px;}
.x54{left:292.563000px;}
.x12{left:295.765500px;}
.x75{left:297.862500px;}
.x92{left:302.490000px;}
.x31{left:303.949500px;}
.x8d{left:313.461000px;}
.x81{left:314.608500px;}
.x70{left:317.365500px;}
.x1d{left:318.513000px;}
.x7{left:329.793000px;}
.x74{left:330.802500px;}
.x77{left:334.954500px;}
.x87{left:338.529000px;}
.x71{left:342.972000px;}
.x55{left:344.319000px;}
.x4{left:346.504500px;}
.x2{left:349.693500px;}
.x69{left:352.255500px;}
.x3a{left:354.064500px;}
.x85{left:356.296500px;}
.x56{left:358.138500px;}
.x25{left:359.734500px;}
.x86{left:370.116000px;}
.x32{left:372.831000px;}
.x4a{left:378.579000px;}
.x6d{left:379.666500px;}
.x6{left:381.384000px;}
.xc{left:382.602000px;}
.x33{left:389.601000px;}
.x8{left:392.640000px;}
.x5{left:394.558500px;}
.x34{left:396.093000px;}
.x73{left:397.461000px;}
.x72{left:399.733500px;}
.x38{left:401.283000px;}
.x45{left:405.159000px;}
.x5f{left:408.060000px;}
.x15{left:409.203000px;}
.x35{left:410.934000px;}
.x9{left:414.060000px;}
.x99{left:436.758000px;}
.x60{left:439.101000px;}
.x41{left:440.547000px;}
.x61{left:445.338000px;}
.x26{left:449.914500px;}
.x4b{left:451.906500px;}
.x39{left:454.089000px;}
.x62{left:460.179000px;}
.x42{left:471.588000px;}
.x4c{left:473.937000px;}
.x43{left:477.825000px;}
.x27{left:491.827500px;}
.x28{left:493.062000px;}
.x96{left:505.870500px;}
.xd{left:511.759500px;}
.x2c{left:512.785500px;}
.x46{left:520.834500px;}
.x88{left:527.869500px;}
.x7b{left:533.803500px;}
.x2d{left:541.209000px;}
.x47{left:544.540500px;}
.x2e{left:547.446000px;}
.x82{left:551.431500px;}
.x29{left:552.793500px;}
.x2a{left:559.284000px;}
.x7c{left:564.844500px;}
.x65{left:567.832500px;}
.x7d{left:571.309500px;}
.x2f{left:581.377500px;}
.x66{left:586.068000px;}
.x2b{left:593.215500px;}
.x7e{left:597.162000px;}
.x78{left:615.474000px;}
.x1f{left:618.072000px;}
.x6a{left:620.866500px;}
.x6e{left:622.663500px;}
.x20{left:627.894000px;}
.x36{left:634.351500px;}
.x7f{left:636.300000px;}
.x57{left:639.351000px;}
.x3b{left:644.967000px;}
.x80{left:651.273000px;}
.x58{left:653.170500px;}
.x37{left:657.750000px;}
.x59{left:670.392000px;}
.x3c{left:676.008000px;}
.x3d{left:682.500000px;}
.x5a{left:691.470000px;}
.x8c{left:695.005500px;}
.x83{left:696.324000px;}
.x3e{left:697.341000px;}
.x5b{left:701.163000px;}
.x8b{left:713.518500px;}
.x21{left:716.895000px;}
.x8f{left:718.423500px;}
.x84{left:720.639000px;}
.x8a{left:724.519500px;}
.x6b{left:738.280500px;}
.x22{left:739.506000px;}
.x90{left:742.452000px;}
.x5c{left:743.953500px;}
.x23{left:745.743000px;}
.x5d{left:750.190500px;}
.x48{left:756.244500px;}
.x49{left:775.687500px;}
.x24{left:778.765500px;}
.x5e{left:784.122000px;}
.x97{left:791.013000px;}
.x1b{left:799.195500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v2{vertical-align:-11.477333pt;}
.vc{vertical-align:-8.730667pt;}
.v7{vertical-align:-6.016000pt;}
.v11{vertical-align:-1.178667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.738667pt;}
.v9{vertical-align:7.754667pt;}
.v10{vertical-align:13.136000pt;}
.vb{vertical-align:14.517333pt;}
.v8{vertical-align:17.232000pt;}
.v4{vertical-align:21.114667pt;}
.v5{vertical-align:24.021333pt;}
.va{vertical-align:28.309333pt;}
.ve{vertical-align:31.184000pt;}
.vd{vertical-align:39.360000pt;}
.v6{vertical-align:51.738667pt;}
.vf{vertical-align:79.269333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.001420pt;}
.ls2e{letter-spacing:0.001422pt;}
.ls5f{letter-spacing:0.002145pt;}
.ls2f{letter-spacing:0.002384pt;}
.ls23{letter-spacing:0.002389pt;}
.ls43{letter-spacing:0.003892pt;}
.ls22{letter-spacing:0.006635pt;}
.ls61{letter-spacing:0.007164pt;}
.ls69{letter-spacing:0.008589pt;}
.ls63{letter-spacing:0.009912pt;}
.ls58{letter-spacing:0.010182pt;}
.ls17{letter-spacing:0.015441pt;}
.ls56{letter-spacing:0.015654pt;}
.ls6c{letter-spacing:0.016724pt;}
.ls51{letter-spacing:0.017083pt;}
.ls6f{letter-spacing:0.290909pt;}
.ls25{letter-spacing:0.500590pt;}
.ls48{letter-spacing:0.522250pt;}
.ls27{letter-spacing:0.559799pt;}
.ls1e{letter-spacing:0.561414pt;}
.ls1b{letter-spacing:0.566747pt;}
.ls4d{letter-spacing:0.585404pt;}
.ls8{letter-spacing:1.530259pt;}
.ls65{letter-spacing:1.960664pt;}
.ls64{letter-spacing:1.960726pt;}
.ls5e{letter-spacing:1.963443pt;}
.ls49{letter-spacing:2.094547pt;}
.ls18{letter-spacing:2.653258pt;}
.ls4f{letter-spacing:2.656407pt;}
.ls55{letter-spacing:2.656631pt;}
.ls35{letter-spacing:2.657546pt;}
.ls46{letter-spacing:2.658591pt;}
.ls70{letter-spacing:3.258185pt;}
.ls67{letter-spacing:3.743463pt;}
.ls7{letter-spacing:3.791684pt;}
.ls9{letter-spacing:4.538186pt;}
.ls1d{letter-spacing:4.650990pt;}
.ls10{letter-spacing:4.687460pt;}
.lse{letter-spacing:4.713564pt;}
.ls4e{letter-spacing:4.716915pt;}
.ls5{letter-spacing:4.721414pt;}
.lsa{letter-spacing:4.733880pt;}
.ls29{letter-spacing:4.737857pt;}
.ls1a{letter-spacing:5.163387pt;}
.ls45{letter-spacing:5.542649pt;}
.ls3d{letter-spacing:5.978291pt;}
.ls5c{letter-spacing:8.705830pt;}
.ls31{letter-spacing:9.716372pt;}
.ls5b{letter-spacing:10.674081pt;}
.ls5a{letter-spacing:10.901895pt;}
.ls28{letter-spacing:12.276374pt;}
.ls16{letter-spacing:12.916374pt;}
.ls1c{letter-spacing:12.974556pt;}
.ls6b{letter-spacing:13.058745pt;}
.ls59{letter-spacing:13.980438pt;}
.ls57{letter-spacing:15.031528pt;}
.ls12{letter-spacing:15.534558pt;}
.ls15{letter-spacing:15.581258pt;}
.ls3b{letter-spacing:15.586591pt;}
.ls20{letter-spacing:15.767286pt;}
.ls14{letter-spacing:16.174559pt;}
.ls62{letter-spacing:16.401830pt;}
.ls21{letter-spacing:16.698196pt;}
.ls2b{letter-spacing:17.338196pt;}
.ls44{letter-spacing:17.413964pt;}
.ls42{letter-spacing:17.419297pt;}
.lsd{letter-spacing:17.570924pt;}
.ls5d{letter-spacing:17.649145pt;}
.ls54{letter-spacing:17.693578pt;}
.lsc{letter-spacing:17.745469pt;}
.ls4b{letter-spacing:18.210924pt;}
.ls3f{letter-spacing:18.813258pt;}
.ls30{letter-spacing:18.817546pt;}
.ls41{letter-spacing:18.818591pt;}
.ls3c{letter-spacing:18.819608pt;}
.ls4{letter-spacing:19.039527pt;}
.ls2d{letter-spacing:19.083652pt;}
.ls13{letter-spacing:19.258198pt;}
.ls37{letter-spacing:19.306144pt;}
.ls26{letter-spacing:19.374562pt;}
.ls6{letter-spacing:19.432743pt;}
.ls24{letter-spacing:19.490925pt;}
.ls72{letter-spacing:19.607289pt;}
.ls2a{letter-spacing:19.723653pt;}
.lsf{letter-spacing:19.840017pt;}
.ls53{letter-spacing:20.368631pt;}
.ls2c{letter-spacing:20.712745pt;}
.ls19{letter-spacing:21.328720pt;}
.ls36{letter-spacing:22.054879pt;}
.ls6d{letter-spacing:22.865474pt;}
.ls11{letter-spacing:23.563656pt;}
.ls6e{letter-spacing:23.912747pt;}
.ls71{letter-spacing:23.970929pt;}
.ls1f{letter-spacing:25.250930pt;}
.ls4c{letter-spacing:26.181840pt;}
.lsb{letter-spacing:26.472749pt;}
.ls40{letter-spacing:26.589113pt;}
.ls33{letter-spacing:26.705477pt;}
.ls47{letter-spacing:27.054568pt;}
.ls3a{letter-spacing:27.778400pt;}
.ls38{letter-spacing:27.783733pt;}
.ls2{letter-spacing:30.079283pt;}
.ls34{letter-spacing:31.883663pt;}
.ls1{letter-spacing:31.896474pt;}
.ls4a{letter-spacing:60.834591pt;}
.ls68{letter-spacing:126.782139pt;}
.ls50{letter-spacing:158.498199pt;}
.ls60{letter-spacing:159.362618pt;}
.ls52{letter-spacing:161.145211pt;}
.ls66{letter-spacing:262.272932pt;}
.ls6a{letter-spacing:262.362908pt;}
.ls0{letter-spacing:306.975635pt;}
.ls3e{letter-spacing:355.374842pt;}
.ls32{letter-spacing:674.909653pt;}
.ws62{word-spacing:-58.181867pt;}
.ws56{word-spacing:-48.523677pt;}
.ws40{word-spacing:-45.265492pt;}
.ws61{word-spacing:-42.065490pt;}
.ws3e{word-spacing:-42.007308pt;}
.ws32{word-spacing:-37.899668pt;}
.ws59{word-spacing:-34.611401pt;}
.ws31{word-spacing:-32.337481pt;}
.ws36{word-spacing:-29.090933pt;}
.ws55{word-spacing:-29.079297pt;}
.ws26{word-spacing:-28.241478pt;}
.ws19{word-spacing:-28.183296pt;}
.ws66{word-spacing:-26.566933pt;}
.ws5b{word-spacing:-25.791179pt;}
.ws12{word-spacing:-25.738045pt;}
.ws6c{word-spacing:-25.544944pt;}
.ws4e{word-spacing:-21.783291pt;}
.ws74{word-spacing:-20.819256pt;}
.ws6e{word-spacing:-18.995964pt;}
.ws34{word-spacing:-16.162923pt;}
.ws2c{word-spacing:-15.650922pt;}
.ws5c{word-spacing:-14.760588pt;}
.ws2e{word-spacing:-13.614557pt;}
.ws2d{word-spacing:-13.556375pt;}
.ws37{word-spacing:-13.323647pt;}
.ws7a{word-spacing:-12.858396pt;}
.ws41{word-spacing:-12.543875pt;}
.ws5d{word-spacing:-12.273923pt;}
.ws49{word-spacing:-11.752737pt;}
.ws72{word-spacing:-11.403646pt;}
.ws63{word-spacing:-11.345464pt;}
.ws75{word-spacing:-11.229100pt;}
.ws47{word-spacing:-11.170918pt;}
.ws58{word-spacing:-11.112737pt;}
.ws4f{word-spacing:-11.054555pt;}
.ws6d{word-spacing:-10.894052pt;}
.ws1f{word-spacing:-10.880009pt;}
.ws5e{word-spacing:-10.763645pt;}
.ws53{word-spacing:-10.705463pt;}
.ws29{word-spacing:-10.647282pt;}
.ws44{word-spacing:-10.589100pt;}
.ws38{word-spacing:-10.414554pt;}
.ws77{word-spacing:-10.307970pt;}
.ws1c{word-spacing:-10.201702pt;}
.ws76{word-spacing:-10.181827pt;}
.ws70{word-spacing:-10.123645pt;}
.ws20{word-spacing:-10.065463pt;}
.ws4a{word-spacing:-10.007281pt;}
.ws64{word-spacing:-9.949099pt;}
.ws1d{word-spacing:-9.890917pt;}
.ws30{word-spacing:-9.832735pt;}
.ws67{word-spacing:-9.774554pt;}
.ws18{word-spacing:-9.716372pt;}
.ws1a{word-spacing:-9.658190pt;}
.ws25{word-spacing:-9.600008pt;}
.ws3b{word-spacing:-9.541826pt;}
.ws1e{word-spacing:-9.483644pt;}
.ws48{word-spacing:-9.425462pt;}
.ws46{word-spacing:-9.367281pt;}
.ws50{word-spacing:-9.309099pt;}
.ws2a{word-spacing:-9.250917pt;}
.ws13{word-spacing:-9.245293pt;}
.ws11{word-spacing:-9.192159pt;}
.ws2f{word-spacing:-9.134553pt;}
.wse{word-spacing:-9.085891pt;}
.wsd{word-spacing:-8.979623pt;}
.ws4{word-spacing:-8.873356pt;}
.ws22{word-spacing:-8.843644pt;}
.ws7b{word-spacing:-8.820222pt;}
.ws17{word-spacing:-8.785462pt;}
.ws15{word-spacing:-8.713954pt;}
.wsf{word-spacing:-8.554553pt;}
.ws51{word-spacing:-8.552734pt;}
.ws10{word-spacing:-8.501419pt;}
.ws52{word-spacing:-8.494553pt;}
.ws4b{word-spacing:-8.145461pt;}
.ws3a{word-spacing:-8.029098pt;}
.ws71{word-spacing:-7.912734pt;}
.ws23{word-spacing:-7.214551pt;}
.ws6b{word-spacing:-6.548980pt;}
.ws6a{word-spacing:-6.509765pt;}
.ws16{word-spacing:-6.400005pt;}
.ws73{word-spacing:-6.225460pt;}
.ws14{word-spacing:-6.004127pt;}
.ws69{word-spacing:-5.120004pt;}
.ws35{word-spacing:-3.840003pt;}
.ws6f{word-spacing:-3.453701pt;}
.ws7c{word-spacing:-3.400567pt;}
.ws68{word-spacing:-3.200003pt;}
.ws2{word-spacing:-0.076513pt;}
.ws43{word-spacing:-0.058182pt;}
.ws7e{word-spacing:-0.053134pt;}
.ws7{word-spacing:-0.047821pt;}
.ws27{word-spacing:-0.046545pt;}
.ws28{word-spacing:-0.042507pt;}
.ws9{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.002217pt;}
.ws5a{word-spacing:0.010627pt;}
.ws33{word-spacing:0.011636pt;}
.ws45{word-spacing:0.302546pt;}
.wsa{word-spacing:2.385457pt;}
.ws3c{word-spacing:3.211639pt;}
.ws54{word-spacing:3.269821pt;}
.ws4d{word-spacing:5.931997pt;}
.ws6{word-spacing:8.129536pt;}
.wsb{word-spacing:10.159221pt;}
.ws3f{word-spacing:13.521919pt;}
.ws60{word-spacing:13.527252pt;}
.ws4c{word-spacing:15.630713pt;}
.ws5{word-spacing:16.306893pt;}
.ws8{word-spacing:16.354714pt;}
.ws78{word-spacing:17.693578pt;}
.ws79{word-spacing:18.968790pt;}
.ws39{word-spacing:20.130926pt;}
.ws42{word-spacing:20.770926pt;}
.ws1{word-spacing:20.786108pt;}
.ws2b{word-spacing:21.120018pt;}
.ws5f{word-spacing:21.410927pt;}
.ws21{word-spacing:21.469109pt;}
.wsc{word-spacing:22.635027pt;}
.ws24{word-spacing:23.040019pt;}
.ws3{word-spacing:23.846639pt;}
.ws7d{word-spacing:23.963374pt;}
.ws0{word-spacing:28.615887pt;}
.ws57{word-spacing:88.122255pt;}
.ws65{word-spacing:131.913248pt;}
.ws1b{word-spacing:1981.451389pt;}
._1e{margin-left:-16.174559pt;}
._32{margin-left:-14.998170pt;}
._1{margin-left:-5.228407pt;}
._4{margin-left:-3.809754pt;}
._5{margin-left:-2.656693pt;}
._2{margin-left:-1.487748pt;}
._3{width:1.338982pt;}
._0{width:2.371905pt;}
._1b{width:4.184526pt;}
._1f{width:5.598861pt;}
._20{width:12.775030pt;}
._2c{width:16.241051pt;}
._33{width:17.188852pt;}
._8{width:19.192296pt;}
._23{width:20.305494pt;}
._7{width:21.806112pt;}
._1c{width:22.835224pt;}
._6{width:23.750838pt;}
._21{width:24.801157pt;}
._17{width:26.193770pt;}
._24{width:27.170132pt;}
._1d{width:28.101842pt;}
._25{width:29.065154pt;}
._19{width:30.138207pt;}
._2d{width:31.448352pt;}
._31{width:40.560276pt;}
._2a{width:41.997308pt;}
._1a{width:45.695014pt;}
._2b{width:48.940882pt;}
._18{width:57.666490pt;}
._16{width:61.103947pt;}
._30{width:68.268442pt;}
._2f{width:94.156296pt;}
._22{width:126.046492pt;}
._27{width:146.231975pt;}
._26{width:158.480629pt;}
._2e{width:231.763311pt;}
._28{width:293.135491pt;}
._29{width:489.285516pt;}
._12{width:895.301880pt;}
._b{width:1083.004803pt;}
._15{width:1085.960126pt;}
._11{width:1124.176591pt;}
._c{width:1136.078094pt;}
._a{width:1164.878118pt;}
._d{width:1171.594013pt;}
._10{width:1209.483161pt;}
._e{width:1212.962381pt;}
._13{width:1310.218020pt;}
._f{width:1558.976303pt;}
._14{width:1579.042425pt;}
._9{width:1710.100391pt;}
.fs9{font-size:27.450736pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs8{font-size:39.215450pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:138.872000pt;}
.y46{bottom:142.501333pt;}
.y2b{bottom:153.742667pt;}
.y45{bottom:169.600000pt;}
.y2a{bottom:175.052000pt;}
.yab{bottom:176.018667pt;}
.ye0{bottom:176.576000pt;}
.y92{bottom:178.696000pt;}
.yaa{bottom:179.648000pt;}
.ydf{bottom:180.884000pt;}
.y5f{bottom:196.698667pt;}
.y44{bottom:204.258667pt;}
.y91{bottom:205.794667pt;}
.ya9{bottom:206.746667pt;}
.y29{bottom:216.696000pt;}
.yde{bottom:219.268000pt;}
.y5e{bottom:223.796000pt;}
.y43{bottom:228.778667pt;}
.ye{bottom:230.642667pt;}
.y8f{bottom:232.010667pt;}
.y90{bottom:238.392000pt;}
.y8e{bottom:241.988000pt;}
.ya8{bottom:242.565333pt;}
.yc2{bottom:242.694667pt;}
.y78{bottom:243.102667pt;}
.y42{bottom:245.362667pt;}
.ydd{bottom:246.366667pt;}
.y5d{bottom:250.894667pt;}
.yd{bottom:255.217333pt;}
.y28{bottom:258.338667pt;}
.ya7{bottom:269.664000pt;}
.ydc{bottom:273.464000pt;}
.y5c{bottom:277.993333pt;}
.y8d{bottom:278.182667pt;}
.yc{bottom:279.792000pt;}
.y41{bottom:281.349333pt;}
.yc1{bottom:295.869333pt;}
.y77{bottom:299.581333pt;}
.y27{bottom:299.982667pt;}
.ydb{bottom:300.562667pt;}
.yb{bottom:304.366667pt;}
.y40{bottom:308.448000pt;}
.ya6{bottom:315.660000pt;}
.y5b{bottom:317.804000pt;}
.yc0{bottom:322.968000pt;}
.y8c{bottom:324.178667pt;}
.y76{bottom:326.680000pt;}
.ya{bottom:328.941333pt;}
.y3f{bottom:335.546667pt;}
.y26{bottom:341.626667pt;}
.yda{bottom:346.558667pt;}
.ybf{bottom:350.065333pt;}
.y5a{bottom:357.614667pt;}
.y75{bottom:369.102667pt;}
.ybe{bottom:377.164000pt;}
.y8b{bottom:377.458667pt;}
.y3e{bottom:381.542667pt;}
.y25{bottom:383.270667pt;}
.ya5{bottom:384.473333pt;}
.y74{bottom:392.572000pt;}
.y73{bottom:396.201333pt;}
.yd9{bottom:400.182667pt;}
.y59{bottom:403.610667pt;}
.y8a{bottom:404.557333pt;}
.ya4{bottom:408.384000pt;}
.ybd{bottom:423.160000pt;}
.y24{bottom:424.914667pt;}
.yd8{bottom:427.281333pt;}
.y3d{bottom:434.789333pt;}
.y9{bottom:436.676000pt;}
.y72{bottom:438.624000pt;}
.y89{bottom:439.422667pt;}
.ya1{bottom:450.005333pt;}
.yd7{bottom:454.380000pt;}
.ya0{bottom:455.318667pt;}
.y58{bottom:457.220000pt;}
.y9f{bottom:460.632000pt;}
.y3c{bottom:461.888000pt;}
.y88{bottom:466.521333pt;}
.y23{bottom:466.558667pt;}
.y71{bottom:477.122667pt;}
.y70{bottom:477.929333pt;}
.yd6{bottom:481.477333pt;}
.y6f{bottom:481.558667pt;}
.y8{bottom:483.264000pt;}
.y57{bottom:484.318667pt;}
.y3b{bottom:488.986667pt;}
.ybc{bottom:493.221333pt;}
.y87{bottom:493.620000pt;}
.y7{bottom:507.173333pt;}
.yd5{bottom:508.576000pt;}
.y56{bottom:511.417333pt;}
.y22{bottom:512.554667pt;}
.y9e{bottom:513.442667pt;}
.y3a{bottom:516.085333pt;}
.y9d{bottom:516.726667pt;}
.ybb{bottom:517.132000pt;}
.y6e{bottom:524.493333pt;}
.yee{bottom:526.793333pt;}
.y86{bottom:528.485333pt;}
.y6{bottom:531.084000pt;}
.yd4{bottom:535.674667pt;}
.y39{bottom:543.184000pt;}
.y55{bottom:549.709333pt;}
.yed{bottom:550.704000pt;}
.y6d{bottom:551.998667pt;}
.yb9{bottom:559.018667pt;}
.yd3{bottom:562.773333pt;}
.ya3{bottom:563.389333pt;}
.y21{bottom:565.448000pt;}
.y85{bottom:567.029333pt;}
.y38{bottom:570.281333pt;}
.yec{bottom:574.614667pt;}
.y6c{bottom:574.661333pt;}
.y9c{bottom:575.308000pt;}
.y6b{bottom:579.097333pt;}
.yb8{bottom:582.929333pt;}
.ya2{bottom:587.300000pt;}
.y54{bottom:588.002667pt;}
.y20{bottom:592.546667pt;}
.y37{bottom:597.380000pt;}
.yeb{bottom:598.524000pt;}
.yd2{bottom:602.704000pt;}
.yba{bottom:605.093333pt;}
.y84{bottom:605.572000pt;}
.y53{bottom:615.101333pt;}
.yea{bottom:622.434667pt;}
.y36{bottom:624.478667pt;}
.y6a{bottom:625.501333pt;}
.yd1{bottom:629.802667pt;}
.y9b{bottom:631.993333pt;}
.y1f{bottom:643.556000pt;}
.y83{bottom:644.116000pt;}
.ye9{bottom:646.345333pt;}
.y52{bottom:649.085333pt;}
.y35{bottom:651.577333pt;}
.y51{bottom:653.393333pt;}
.yb5{bottom:656.630667pt;}
.y5{bottom:665.378667pt;}
.y1e{bottom:667.466667pt;}
.yd0{bottom:669.074667pt;}
.y82{bottom:676.800000pt;}
.y34{bottom:678.674667pt;}
.y81{bottom:678.981333pt;}
.y69{bottom:681.981333pt;}
.y9a{bottom:685.357333pt;}
.y1d{bottom:691.376000pt;}
.y50{bottom:691.686667pt;}
.ycf{bottom:696.173333pt;}
.y33{bottom:705.773333pt;}
.y68{bottom:713.857333pt;}
.y80{bottom:715.176000pt;}
.y1c{bottom:715.286667pt;}
.y99{bottom:726.665333pt;}
.y67{bottom:728.818667pt;}
.y4f{bottom:729.980000pt;}
.yb7{bottom:730.330667pt;}
.yce{bottom:735.446667pt;}
.y1b{bottom:739.197333pt;}
.ye8{bottom:743.314667pt;}
.y7f{bottom:751.369333pt;}
.y32{bottom:751.769333pt;}
.yb6{bottom:754.241333pt;}
.ycd{bottom:762.544000pt;}
.y1a{bottom:763.108000pt;}
.y98{bottom:765.525333pt;}
.y4e{bottom:768.272000pt;}
.ye7{bottom:770.413333pt;}
.y66{bottom:771.753333pt;}
.y7e{bottom:778.468000pt;}
.y19{bottom:787.017333pt;}
.yb4{bottom:792.488000pt;}
.y4c{bottom:795.370667pt;}
.ye6{bottom:797.512000pt;}
.y65{bottom:799.258667pt;}
.y4d{bottom:800.649333pt;}
.ycc{bottom:801.817333pt;}
.y4{bottom:802.264000pt;}
.y97{bottom:804.386667pt;}
.y31{bottom:805.017333pt;}
.y7d{bottom:805.566667pt;}
.y18{bottom:810.928000pt;}
.yb3{bottom:819.586667pt;}
.y64{bottom:826.357333pt;}
.ycb{bottom:828.916000pt;}
.y3{bottom:830.158667pt;}
.y7c{bottom:832.665333pt;}
.y17{bottom:834.838667pt;}
.ye5{bottom:837.893333pt;}
.y96{bottom:840.205333pt;}
.y4b{bottom:841.366667pt;}
.y30{bottom:846.661333pt;}
.yb2{bottom:853.785333pt;}
.y63{bottom:853.864000pt;}
.y16{bottom:858.749333pt;}
.ye4{bottom:864.992000pt;}
.yca{bottom:871.788000pt;}
.y95{bottom:876.024000pt;}
.y7b{bottom:878.661333pt;}
.yb1{bottom:880.884000pt;}
.y62{bottom:880.962667pt;}
.y15{bottom:882.658667pt;}
.y2f{bottom:888.304000pt;}
.y2{bottom:888.702667pt;}
.ye3{bottom:892.090667pt;}
.y4a{bottom:894.976000pt;}
.yc9{bottom:895.698667pt;}
.y14{bottom:906.569333pt;}
.y94{bottom:913.172000pt;}
.yb0{bottom:915.082667pt;}
.y49{bottom:922.074667pt;}
.y61{bottom:923.897333pt;}
.y1{bottom:924.568000pt;}
.yc8{bottom:925.146624pt;}
.y2e{bottom:929.948000pt;}
.y7a{bottom:931.941333pt;}
.ye2{bottom:932.472000pt;}
.y13{bottom:940.973333pt;}
.yc7{bottom:942.793891pt;}
.y12{bottom:945.794667pt;}
.yaf{bottom:946.981333pt;}
.y48{bottom:949.173333pt;}
.y93{bottom:950.318667pt;}
.yae{bottom:950.610667pt;}
.y79{bottom:959.040000pt;}
.yc6{bottom:960.441159pt;}
.y60{bottom:966.832000pt;}
.y10{bottom:969.533333pt;}
.y2d{bottom:971.592000pt;}
.ye1{bottom:972.854667pt;}
.y11{bottom:974.812000pt;}
.yc5{bottom:978.088426pt;}
.yad{bottom:982.508000pt;}
.y47{bottom:986.137333pt;}
.yc4{bottom:995.734710pt;}
.yf{bottom:1013.236000pt;}
.yc3{bottom:1013.774620pt;}
.y2c{bottom:1059.728000pt;}
.hd{height:15.550933pt;}
.ha{height:24.696550pt;}
.h25{height:29.411588pt;}
.h9{height:29.499997pt;}
.h11{height:30.392648pt;}
.h26{height:32.456893pt;}
.h7{height:35.865600pt;}
.hc{height:37.193707pt;}
.hb{height:38.043849pt;}
.h6{height:39.850400pt;}
.he{height:41.658217pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h3{height:47.820800pt;}
.h21{height:48.163217pt;}
.h17{height:50.614663pt;}
.h12{height:51.501981pt;}
.hf{height:51.507315pt;}
.h18{height:51.738667pt;}
.h22{height:52.986400pt;}
.h13{height:53.478823pt;}
.h16{height:53.521330pt;}
.h2{height:53.559147pt;}
.h10{height:54.413981pt;}
.h15{height:54.419315pt;}
.h20{height:58.020400pt;}
.h23{height:58.153733pt;}
.h1a{height:58.696648pt;}
.h19{height:58.701981pt;}
.h27{height:58.890217pt;}
.h28{height:58.991067pt;}
.h4{height:59.756892pt;}
.h14{height:60.868400pt;}
.h1c{height:61.380400pt;}
.h24{height:68.931315pt;}
.h1b{height:73.213981pt;}
.h1d{height:89.974663pt;}
.h1f{height:94.328648pt;}
.h1e{height:129.883997pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x14{left:96.000000pt;}
.x1a{left:98.434667pt;}
.x89{left:100.693333pt;}
.x19{left:101.656000pt;}
.x18{left:106.909333pt;}
.x17{left:112.565333pt;}
.x13{left:115.925333pt;}
.x9c{left:117.000000pt;}
.x16{left:118.221333pt;}
.x67{left:128.538667pt;}
.x1c{left:133.492000pt;}
.x40{left:135.850667pt;}
.x11{left:141.164000pt;}
.x4e{left:142.054667pt;}
.x68{left:147.069333pt;}
.x94{left:149.158667pt;}
.x10{left:154.448000pt;}
.x9a{left:155.526667pt;}
.x1e{left:159.433333pt;}
.x30{left:165.786667pt;}
.x3f{left:170.452000pt;}
.x6f{left:171.785333pt;}
.x4f{left:175.321333pt;}
.x9b{left:176.325333pt;}
.x95{left:177.582667pt;}
.x1{left:178.692000pt;}
.x63{left:183.288000pt;}
.x4d{left:184.973333pt;}
.x44{left:185.896000pt;}
.x50{left:188.513333pt;}
.xe{left:190.597333pt;}
.xf{left:196.556000pt;}
.x51{left:198.236000pt;}
.x93{left:200.440000pt;}
.x64{left:201.460000pt;}
.x79{left:205.709333pt;}
.x8e{left:210.874667pt;}
.x98{left:213.738667pt;}
.x6c{left:221.934667pt;}
.xb{left:224.762667pt;}
.x7a{left:227.245333pt;}
.x52{left:241.190667pt;}
.x3{left:244.284000pt;}
.x53{left:246.864000pt;}
.x91{left:247.838667pt;}
.x76{left:252.436000pt;}
.x54{left:260.056000pt;}
.x12{left:262.902667pt;}
.x75{left:264.766667pt;}
.x92{left:268.880000pt;}
.x31{left:270.177333pt;}
.x8d{left:278.632000pt;}
.x81{left:279.652000pt;}
.x70{left:282.102667pt;}
.x1d{left:283.122667pt;}
.x7{left:293.149333pt;}
.x74{left:294.046667pt;}
.x77{left:297.737333pt;}
.x87{left:300.914667pt;}
.x71{left:304.864000pt;}
.x55{left:306.061333pt;}
.x4{left:308.004000pt;}
.x2{left:310.838667pt;}
.x69{left:313.116000pt;}
.x3a{left:314.724000pt;}
.x85{left:316.708000pt;}
.x56{left:318.345333pt;}
.x25{left:319.764000pt;}
.x86{left:328.992000pt;}
.x32{left:331.405333pt;}
.x4a{left:336.514667pt;}
.x6d{left:337.481333pt;}
.x6{left:339.008000pt;}
.xc{left:340.090667pt;}
.x33{left:346.312000pt;}
.x8{left:349.013333pt;}
.x5{left:350.718667pt;}
.x34{left:352.082667pt;}
.x73{left:353.298667pt;}
.x72{left:355.318667pt;}
.x38{left:356.696000pt;}
.x45{left:360.141333pt;}
.x5f{left:362.720000pt;}
.x15{left:363.736000pt;}
.x35{left:365.274667pt;}
.x9{left:368.053333pt;}
.x99{left:388.229333pt;}
.x60{left:390.312000pt;}
.x41{left:391.597333pt;}
.x61{left:395.856000pt;}
.x26{left:399.924000pt;}
.x4b{left:401.694667pt;}
.x39{left:403.634667pt;}
.x62{left:409.048000pt;}
.x42{left:419.189333pt;}
.x4c{left:421.277333pt;}
.x43{left:424.733333pt;}
.x27{left:437.180000pt;}
.x28{left:438.277333pt;}
.x96{left:449.662667pt;}
.xd{left:454.897333pt;}
.x2c{left:455.809333pt;}
.x46{left:462.964000pt;}
.x88{left:469.217333pt;}
.x7b{left:474.492000pt;}
.x2d{left:481.074667pt;}
.x47{left:484.036000pt;}
.x2e{left:486.618667pt;}
.x82{left:490.161333pt;}
.x29{left:491.372000pt;}
.x2a{left:497.141333pt;}
.x7c{left:502.084000pt;}
.x65{left:504.740000pt;}
.x7d{left:507.830667pt;}
.x2f{left:516.780000pt;}
.x66{left:520.949333pt;}
.x2b{left:527.302667pt;}
.x7e{left:530.810667pt;}
.x78{left:547.088000pt;}
.x1f{left:549.397333pt;}
.x6a{left:551.881333pt;}
.x6e{left:553.478667pt;}
.x20{left:558.128000pt;}
.x36{left:563.868000pt;}
.x7f{left:565.600000pt;}
.x57{left:568.312000pt;}
.x3b{left:573.304000pt;}
.x80{left:578.909333pt;}
.x58{left:580.596000pt;}
.x37{left:584.666667pt;}
.x59{left:595.904000pt;}
.x3c{left:600.896000pt;}
.x3d{left:606.666667pt;}
.x5a{left:614.640000pt;}
.x8c{left:617.782667pt;}
.x83{left:618.954667pt;}
.x3e{left:619.858667pt;}
.x5b{left:623.256000pt;}
.x8b{left:634.238667pt;}
.x21{left:637.240000pt;}
.x8f{left:638.598667pt;}
.x84{left:640.568000pt;}
.x8a{left:644.017333pt;}
.x6b{left:656.249333pt;}
.x22{left:657.338667pt;}
.x90{left:659.957333pt;}
.x5c{left:661.292000pt;}
.x23{left:662.882667pt;}
.x5d{left:666.836000pt;}
.x48{left:672.217333pt;}
.x49{left:689.500000pt;}
.x24{left:692.236000pt;}
.x5e{left:696.997333pt;}
.x97{left:703.122667pt;}
.x1b{left:710.396000pt;}
}




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