
    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_a1826b62e0a91b6fa94ab827.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2d6601cb9d269db5f7a13e86.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_a7cbce403858c1d24fdcb883.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_7b8f94a5dc40f490ecd8878c.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_4e11c69c5cd59b6d43d1a5d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_e2ccfc18e5f781b23372b58a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_57dfb9a4cedf61904481beba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f1ff9f819e6f0fad607f3b74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.451000;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_f3442ee8aca8c42450789e8d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.859000;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_dc5c7161f12071db05eb62f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_cbe76756b21ade3077ce66cf.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_2b93d6696067cb6a8606a132.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_b92e76adca2b378e058a1279.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b9b0d9e5ef4905410545a62c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e3d70cc3fb8f1cb1c6c8986f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b0c8965a33c508c2717eabab.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.693000;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_c53a9b145918668346787547.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.025000;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_95f7a39be3444d0298461a40.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c8a2adcf02a0a42d7dab421a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.859000;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_ac9b8f0006405b7dafc2fb4c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.685000;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_086b68df56d1398073665772.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.665000;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_4fc4201aa92e850c374656db.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_f95fc3870e2ffbe0932ad95d.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_a17e4bd5648c6f7e5673a4be.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.451000;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_0aedd101fe73e26a25472779.woff2')format("woff");}.ff19{font-family:ff19;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;}
.m5{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);}
.m8{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);}
.m12{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);}
.m11{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);}
.m3{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);}
.m2{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);}
.me{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);}
.ma{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);}
.mc{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);}
.md{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);}
.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);}
.m10{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);}
.m4{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);}
.m9{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);}
.mf{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);}
.mb{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);}
.m6{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.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);}
.v4{vertical-align:-22.854000px;}
.va{vertical-align:-14.184000px;}
.v2{vertical-align:-12.912000px;}
.v5{vertical-align:-9.816000px;}
.v3{vertical-align:-5.982000px;}
.v15{vertical-align:-2.988000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.456000px;}
.v10{vertical-align:9.450000px;}
.vf{vertical-align:13.614000px;}
.v7{vertical-align:16.182000px;}
.vb{vertical-align:18.906000px;}
.v11{vertical-align:22.542000px;}
.v9{vertical-align:23.754000px;}
.v6{vertical-align:27.030000px;}
.ve{vertical-align:35.082000px;}
.v8{vertical-align:43.212000px;}
.vc{vertical-align:44.280000px;}
.v12{vertical-align:46.296000px;}
.v14{vertical-align:58.212000px;}
.vd{vertical-align:68.034000px;}
.v13{vertical-align:89.184000px;}
.ls3{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.000398px;}
.ls67{letter-spacing:0.001549px;}
.ls62{letter-spacing:0.001591px;}
.ls31{letter-spacing:0.001597px;}
.lsf{letter-spacing:0.001599px;}
.ls3c{letter-spacing:0.002137px;}
.ls35{letter-spacing:0.002153px;}
.ls5d{letter-spacing:0.002579px;}
.ls18{letter-spacing:0.002688px;}
.ls56{letter-spacing:0.002692px;}
.ls50{letter-spacing:0.002700px;}
.ls52{letter-spacing:0.004297px;}
.ls49{letter-spacing:0.004322px;}
.ls5b{letter-spacing:0.004379px;}
.ls4b{letter-spacing:0.005429px;}
.ls20{letter-spacing:0.009732px;}
.ls66{letter-spacing:0.009985px;}
.ls7{letter-spacing:0.013465px;}
.ls36{letter-spacing:0.018402px;}
.ls59{letter-spacing:0.022653px;}
.ls43{letter-spacing:0.024948px;}
.ls65{letter-spacing:0.075414px;}
.ls24{letter-spacing:0.589091px;}
.ls19{letter-spacing:0.654546px;}
.lsc{letter-spacing:2.984915px;}
.ls4f{letter-spacing:2.986059px;}
.ls10{letter-spacing:2.987236px;}
.ls2{letter-spacing:2.988557px;}
.ls5e{letter-spacing:2.988615px;}
.ls37{letter-spacing:2.989739px;}
.ls9{letter-spacing:2.990915px;}
.ls54{letter-spacing:2.992059px;}
.ls21{letter-spacing:2.994103px;}
.ls57{letter-spacing:4.663520px;}
.ls8{letter-spacing:4.701332px;}
.ls3f{letter-spacing:5.005059px;}
.ls41{letter-spacing:5.011059px;}
.ls2b{letter-spacing:5.301823px;}
.ls17{letter-spacing:5.311591px;}
.ls34{letter-spacing:6.719578px;}
.ls1c{letter-spacing:7.181236px;}
.ls1d{letter-spacing:9.556372px;}
.ls11{letter-spacing:9.621826px;}
.ls3b{letter-spacing:9.687281px;}
.lsd{letter-spacing:10.930918px;}
.lse{letter-spacing:14.530921px;}
.ls15{letter-spacing:15.054558px;}
.ls2e{letter-spacing:17.528915px;}
.ls1f{letter-spacing:17.532103px;}
.ls3e{letter-spacing:17.533739px;}
.ls32{letter-spacing:17.534915px;}
.lsb{letter-spacing:18.130924px;}
.lsa{letter-spacing:18.196379px;}
.ls6{letter-spacing:18.785470px;}
.ls2d{letter-spacing:19.832744px;}
.ls30{letter-spacing:20.342700px;}
.ls4c{letter-spacing:20.348700px;}
.ls4d{letter-spacing:21.166059px;}
.ls25{letter-spacing:21.169739px;}
.ls33{letter-spacing:21.172059px;}
.ls2c{letter-spacing:21.175739px;}
.ls28{letter-spacing:21.403654px;}
.ls4{letter-spacing:21.419468px;}
.ls27{letter-spacing:21.469109px;}
.ls2f{letter-spacing:21.719412px;}
.ls58{letter-spacing:21.796382px;}
.ls1b{letter-spacing:21.861836px;}
.ls51{letter-spacing:21.992746px;}
.ls55{letter-spacing:22.883412px;}
.ls61{letter-spacing:22.912362px;}
.ls48{letter-spacing:23.105474px;}
.ls3d{letter-spacing:23.191059px;}
.ls23{letter-spacing:23.301838px;}
.ls14{letter-spacing:23.498201px;}
.ls42{letter-spacing:24.021838px;}
.ls1a{letter-spacing:24.156532px;}
.ls39{letter-spacing:24.162532px;}
.ls29{letter-spacing:24.741839px;}
.ls46{letter-spacing:24.800915px;}
.ls3a{letter-spacing:24.805739px;}
.ls63{letter-spacing:24.811739px;}
.ls22{letter-spacing:25.658203px;}
.ls2a{letter-spacing:26.770931px;}
.ls53{letter-spacing:27.425477px;}
.ls4a{letter-spacing:29.394532px;}
.ls4e{letter-spacing:29.520025px;}
.ls47{letter-spacing:29.781843px;}
.ls44{letter-spacing:29.847298px;}
.ls38{letter-spacing:29.912752px;}
.ls26{letter-spacing:30.370934px;}
.ls64{letter-spacing:35.869121px;}
.ls1{letter-spacing:35.883533px;}
.ls5a{letter-spacing:71.436532px;}
.ls60{letter-spacing:75.274362px;}
.ls40{letter-spacing:77.760065px;}
.ls12{letter-spacing:141.840118px;}
.ls0{letter-spacing:345.347589px;}
.ls5f{letter-spacing:382.396200px;}
.ls5c{letter-spacing:385.380710px;}
.ls13{letter-spacing:643.680536px;}
.ls5{letter-spacing:774.247739px;}
.ls1e{letter-spacing:796.189754px;}
.ls16{letter-spacing:909.098939px;}
.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;}
}
.ws60{word-spacing:-65.520055px;}
.ws34{word-spacing:-65.454600px;}
.ws51{word-spacing:-54.589136px;}
.ws31{word-spacing:-51.381861px;}
.ws2b{word-spacing:-50.923679px;}
.ws55{word-spacing:-47.323676px;}
.ws41{word-spacing:-47.258221px;}
.ws16{word-spacing:-42.637126px;}
.ws6b{word-spacing:-38.937826px;}
.ws2a{word-spacing:-36.379667px;}
.ws6f{word-spacing:-34.370970px;}
.ws35{word-spacing:-33.211407px;}
.ws2c{word-spacing:-32.727300px;}
.ws54{word-spacing:-31.771663px;}
.ws33{word-spacing:-31.706208px;}
.ws8a{word-spacing:-30.551309px;}
.ws6e{word-spacing:-29.887800px;}
.ws13{word-spacing:-27.646998px;}
.ws43{word-spacing:-26.490090px;}
.ws42{word-spacing:-26.487034px;}
.ws29{word-spacing:-24.506202px;}
.ws2d{word-spacing:-24.440748px;}
.ws57{word-spacing:-20.356381px;}
.ws4e{word-spacing:-20.094562px;}
.ws36{word-spacing:-18.183288px;}
.ws58{word-spacing:-17.672742px;}
.ws4f{word-spacing:-17.476378px;}
.ws49{word-spacing:-17.214560px;}
.ws7a{word-spacing:-16.821832px;}
.ws66{word-spacing:-16.363650px;}
.ws59{word-spacing:-16.173832px;}
.ws0{word-spacing:-16.139475px;}
.ws72{word-spacing:-16.101832px;}
.ws50{word-spacing:-15.977468px;}
.ws4a{word-spacing:-14.989103px;}
.ws73{word-spacing:-14.465467px;}
.ws37{word-spacing:-14.400012px;}
.ws81{word-spacing:-14.226593px;}
.ws67{word-spacing:-14.203648px;}
.ws7c{word-spacing:-14.007284px;}
.ws4b{word-spacing:-13.752011px;}
.ws4c{word-spacing:-13.686557px;}
.ws3d{word-spacing:-13.614557px;}
.ws28{word-spacing:-13.483648px;}
.ws3{word-spacing:-13.449600px;}
.ws27{word-spacing:-13.418193px;}
.wsf{word-spacing:-13.210408px;}
.ws5c{word-spacing:-13.025465px;}
.ws63{word-spacing:-12.894556px;}
.ws82{word-spacing:-12.612652px;}
.ws56{word-spacing:-12.567283px;}
.ws53{word-spacing:-12.501829px;}
.ws4d{word-spacing:-12.312010px;}
.ws1d{word-spacing:-12.305465px;}
.ws84{word-spacing:-12.014896px;}
.ws70{word-spacing:-11.781828px;}
.ws1e{word-spacing:-11.585464px;}
.ws83{word-spacing:-11.542668px;}
.ws18{word-spacing:-11.476915px;}
.ws62{word-spacing:-11.417140px;}
.ws76{word-spacing:-11.389100px;}
.ws40{word-spacing:-11.323646px;}
.ws11{word-spacing:-11.258191px;}
.ws64{word-spacing:-11.192737px;}
.ws74{word-spacing:-11.127282px;}
.ws75{word-spacing:-11.061827px;}
.ws3e{word-spacing:-10.996373px;}
.ws12{word-spacing:-10.930918px;}
.ws14{word-spacing:-10.865464px;}
.ws3f{word-spacing:-10.800009px;}
.ws2f{word-spacing:-10.734554px;}
.ws8c{word-spacing:-10.699832px;}
.ws2e{word-spacing:-10.669100px;}
.ws7d{word-spacing:-10.603645px;}
.ws1a{word-spacing:-10.538191px;}
.ws80{word-spacing:-10.466708px;}
.ws71{word-spacing:-10.407281px;}
.ws5d{word-spacing:-10.348372px;}
.ws19{word-spacing:-10.341827px;}
.ws86{word-spacing:-10.281403px;}
.wse{word-spacing:-10.161852px;}
.ws1c{word-spacing:-10.145463px;}
.ws5a{word-spacing:-10.086554px;}
.ws47{word-spacing:-10.021099px;}
.ws4{word-spacing:-9.982525px;}
.ws21{word-spacing:-9.949099px;}
.ws6c{word-spacing:-9.922750px;}
.ws7f{word-spacing:-9.803198px;}
.ws8d{word-spacing:-9.749400px;}
.wsc{word-spacing:-9.743423px;}
.wsb{word-spacing:-9.683647px;}
.ws44{word-spacing:-9.425462px;}
.ws87{word-spacing:-9.390747px;}
.ws20{word-spacing:-9.235644px;}
.ws85{word-spacing:-9.211420px;}
.ws5{word-spacing:-9.194147px;}
.ws8b{word-spacing:-9.151644px;}
.ws10{word-spacing:-9.032735px;}
.ws45{word-spacing:-8.712007px;}
.wsd{word-spacing:-8.607686px;}
.ws22{word-spacing:-8.116370px;}
.ws7b{word-spacing:-8.050916px;}
.ws77{word-spacing:-7.854552px;}
.ws23{word-spacing:-7.468370px;}
.ws3c{word-spacing:-7.069097px;}
.ws39{word-spacing:-6.741824px;}
.ws15{word-spacing:-5.825459px;}
.ws78{word-spacing:-5.498186px;}
.wsa{word-spacing:-5.027128px;}
.ws32{word-spacing:-4.722934px;}
.ws5f{word-spacing:-4.712731px;}
.ws38{word-spacing:-4.320004px;}
.ws1f{word-spacing:-3.861821px;}
.ws88{word-spacing:-3.825638px;}
.ws3a{word-spacing:-3.652367px;}
.ws89{word-spacing:-3.532738px;}
.ws61{word-spacing:-3.207275px;}
.ws1b{word-spacing:-2.160002px;}
.ws7e{word-spacing:-0.981819px;}
.ws2{word-spacing:-0.086077px;}
.ws25{word-spacing:-0.065455px;}
.ws6{word-spacing:-0.053798px;}
.ws3b{word-spacing:-0.052364px;}
.ws5e{word-spacing:-0.006545px;}
.ws7{word-spacing:0.000000px;}
.ws24{word-spacing:0.013091px;}
.ws5b{word-spacing:0.058909px;}
.ws65{word-spacing:0.209455px;}
.ws30{word-spacing:0.340364px;}
.ws48{word-spacing:2.415275px;}
.ws8{word-spacing:2.683639px;}
.ws46{word-spacing:2.827639px;}
.ws26{word-spacing:10.878555px;}
.ws9{word-spacing:11.429123px;}
.ws1{word-spacing:23.384371px;}
.ws79{word-spacing:34.370970px;}
.ws52{word-spacing:99.137537px;}
.ws68{word-spacing:99.202992px;}
.ws69{word-spacing:352.476891px;}
.ws6a{word-spacing:352.499899px;}
.ws6d{word-spacing:386.529609px;}
.ws17{word-spacing:2229.126812px;}
._32{margin-left:-36.916394px;}
._30{margin-left:-18.196379px;}
._0{margin-left:-10.759650px;}
._2e{margin-left:-7.250779px;}
._2{margin-left:-5.881958px;}
._5{margin-left:-4.130544px;}
._6{margin-left:-2.988780px;}
._3{margin-left:-1.673717px;}
._4{width:1.512322px;}
._1{width:2.668393px;}
._33{width:4.185247px;}
._2f{width:5.363430px;}
._35{width:7.173225px;}
._34{width:18.111176px;}
._36{width:20.379516px;}
._23{width:22.813618px;}
._39{width:24.011860px;}
._7{width:26.719693px;}
._2a{width:28.449616px;}
._20{width:29.473223px;}
._8{width:32.242998px;}
._2d{width:33.905483px;}
._3d{width:35.865360px;}
._3c{width:38.985222px;}
._29{width:44.745227px;}
._28{width:47.543660px;}
._2b{width:50.699212px;}
._2c{width:64.719372px;}
._27{width:68.741940px;}
._38{width:129.473950px;}
._31{width:141.840118px;}
._3a{width:154.083565px;}
._37{width:250.399988px;}
._21{width:407.419916px;}
._3b{width:416.557712px;}
._1b{width:953.138052px;}
._10{width:1034.091059px;}
._1d{width:1232.891012px;}
._c{width:1247.936321px;}
._14{width:1313.783649px;}
._19{width:1343.107310px;}
._15{width:1367.827912px;}
._e{width:1372.823698px;}
._b{width:1409.355745px;}
._d{width:1413.419320px;}
._13{width:1454.751620px;}
._a{width:1513.226198px;}
._18{width:1516.643569px;}
._1a{width:1530.099114px;}
._11{width:1555.252534px;}
._24{width:1589.051577px;}
._16{width:1601.054933px;}
._f{width:1617.549492px;}
._1c{width:1683.778754px;}
._17{width:1700.723141px;}
._26{width:1748.119138px;}
._1e{width:1772.826008px;}
._25{width:1842.111943px;}
._12{width:1885.340082px;}
._9{width:1923.851007px;}
._1f{width:1950.360120px;}
._22{width:2224.399801px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y45{bottom:160.314000px;}
.y2a{bottom:173.425500px;}
.yce{bottom:186.831000px;}
.y44{bottom:190.800000px;}
.y74{bottom:199.977000px;}
.y8b{bottom:206.388000px;}
.y5d{bottom:206.872500px;}
.yb5{bottom:207.433500px;}
.y9e{bottom:214.791000px;}
.y29{bottom:216.375000px;}
.y9d{bottom:220.426500px;}
.y43{bottom:221.286000px;}
.ycd{bottom:222.231000px;}
.y73{bottom:230.463000px;}
.y5c{bottom:237.358500px;}
.ye4{bottom:238.731000px;}
.y9c{bottom:245.277000px;}
.y28{bottom:247.122000px;}
.ycc{bottom:249.130500px;}
.y9b{bottom:250.912500px;}
.y42{bottom:251.770500px;}
.y8a{bottom:258.133500px;}
.yb4{bottom:259.243500px;}
.y72{bottom:270.124500px;}
.ycb{bottom:276.030000px;}
.y27{bottom:277.869000px;}
.yd{bottom:279.648000px;}
.y41{bottom:282.256500px;}
.ye3{bottom:286.663500px;}
.y5b{bottom:289.104000px;}
.yf9{bottom:303.516000px;}
.yca{bottom:303.526500px;}
.y9a{bottom:305.593500px;}
.yc{bottom:307.294500px;}
.yb3{bottom:307.468500px;}
.y26{bottom:308.616000px;}
.y71{bottom:309.787500px;}
.y40{bottom:313.990500px;}
.ye2{bottom:317.149500px;}
.y89{bottom:318.915000px;}
.y10d{bottom:323.944500px;}
.yb{bottom:334.941000px;}
.y70{bottom:340.273500px;}
.y3f{bottom:344.476500px;}
.ye1{bottom:347.971500px;}
.y5a{bottom:349.962000px;}
.y10c{bottom:350.844000px;}
.y25{bottom:355.989000px;}
.ya{bottom:362.586000px;}
.yf8{bottom:363.643500px;}
.y88{bottom:364.989000px;}
.yb2{bottom:368.755500px;}
.yc9{bottom:370.092000px;}
.y3e{bottom:374.961000px;}
.y10b{bottom:377.743500px;}
.ye0{bottom:378.456000px;}
.y6f{bottom:379.936500px;}
.y99{bottom:383.290500px;}
.y24{bottom:386.736000px;}
.y9{bottom:390.232500px;}
.yf7{bottom:394.129500px;}
.y59{bottom:396.520500px;}
.y10a{bottom:404.643000px;}
.y3d{bottom:405.447000px;}
.ydf{bottom:408.942000px;}
.yb1{bottom:414.511500px;}
.y87{bottom:416.734500px;}
.y23{bottom:417.483000px;}
.y6e{bottom:419.598000px;}
.yc8{bottom:419.823000px;}
.yf6{bottom:424.614000px;}
.y109{bottom:431.541000px;}
.y98{bottom:439.024500px;}
.y58{bottom:443.079000px;}
.yb0{bottom:444.996000px;}
.y22{bottom:448.230000px;}
.y6d{bottom:450.084000px;}
.y3c{bottom:458.440500px;}
.yde{bottom:461.023500px;}
.y86{bottom:464.893500px;}
.yf5{bottom:465.028500px;}
.yc7{bottom:469.675500px;}
.y57{bottom:473.565000px;}
.y21{bottom:478.977000px;}
.y108{bottom:485.340000px;}
.ydd{bottom:487.923000px;}
.yaf{bottom:490.752000px;}
.y97{bottom:494.757000px;}
.y6c{bottom:501.829500px;}
.y56{bottom:504.049500px;}
.yf4{bottom:508.785000px;}
.y20{bottom:509.724000px;}
.y107{bottom:512.239500px;}
.yae{bottom:521.238000px;}
.y85{bottom:525.675000px;}
.y3b{bottom:526.486500px;}
.y8{bottom:531.609000px;}
.y55{bottom:534.535500px;}
.yc6{bottom:536.170500px;}
.y106{bottom:539.137500px;}
.ydc{bottom:539.320500px;}
.y1f{bottom:540.471000px;}
.y96{bottom:549.439500px;}
.yf3{bottom:552.543000px;}
.y84{bottom:556.161000px;}
.y6b{bottom:561.838500px;}
.y105{bottom:566.037000px;}
.yad{bottom:573.048000px;}
.y3a{bottom:575.830500px;}
.y54{bottom:581.094000px;}
.yc5{bottom:583.989000px;}
.y7{bottom:584.020500px;}
.y1e{bottom:587.842500px;}
.yd9{bottom:590.179500px;}
.y104{bottom:592.936500px;}
.yf2{bottom:596.301000px;}
.y6a{bottom:602.995500px;}
.y39{bottom:607.564500px;}
.y83{bottom:607.906500px;}
.y6{bottom:610.920000px;}
.yd8{bottom:617.079000px;}
.y103{bottom:619.836000px;}
.yc4{bottom:624.820500px;}
.y95{bottom:627.135000px;}
.y53{bottom:627.652500px;}
.yac{bottom:634.335000px;}
.y1d{bottom:635.214000px;}
.yf1{bottom:636.714000px;}
.y5{bottom:637.818000px;}
.y38{bottom:639.298500px;}
.y102{bottom:646.734000px;}
.y69{bottom:654.741000px;}
.yab{bottom:664.821000px;}
.yc3{bottom:666.478500px;}
.yf0{bottom:667.198500px;}
.y82{bottom:668.688000px;}
.y37{bottom:671.031000px;}
.yc2{bottom:671.295000px;}
.y52{bottom:674.212500px;}
.y93{bottom:674.581500px;}
.y94{bottom:680.989500px;}
.y1c{bottom:682.587000px;}
.yd7{bottom:690.367500px;}
.yaa{bottom:695.307000px;}
.y92{bottom:696.876000px;}
.yef{bottom:697.684500px;}
.y80{bottom:703.537500px;}
.y81{bottom:709.945500px;}
.y68{bottom:714.750000px;}
.yc1{bottom:717.771000px;}
.y36{bottom:720.376500px;}
.y51{bottom:720.771000px;}
.y7f{bottom:725.832000px;}
.yee{bottom:728.170500px;}
.y1b{bottom:734.593500px;}
.y101{bottom:740.881500px;}
.ya9{bottom:741.061500px;}
.y91{bottom:741.540000px;}
.y67{bottom:745.234500px;}
.y50{bottom:751.255500px;}
.y7e{bottom:760.836000px;}
.ydb{bottom:767.392500px;}
.yc0{bottom:769.516500px;}
.y35{bottom:769.722000px;}
.y100{bottom:771.367500px;}
.ya8{bottom:771.547500px;}
.y66{bottom:775.720500px;}
.yed{bottom:779.916000px;}
.y4f{bottom:781.741500px;}
.y4{bottom:788.899500px;}
.yda{bottom:794.292000px;}
.y1a{bottom:797.002500px;}
.y90{bottom:800.209500px;}
.yff{bottom:801.853500px;}
.y7d{bottom:806.910000px;}
.ybf{bottom:818.913000px;}
.y34{bottom:819.066000px;}
.ya7{bottom:823.359000px;}
.y4e{bottom:824.254500px;}
.y65{bottom:827.466000px;}
.y19{bottom:827.487000px;}
.y4d{bottom:828.300000px;}
.yfe{bottom:832.338000px;}
.ybe{bottom:837.261000px;}
.yd6{bottom:837.354000px;}
.yec{bottom:840.042000px;}
.y33{bottom:850.800000px;}
.y7c{bottom:852.984000px;}
.y8f{bottom:855.943500px;}
.yeb{bottom:870.528000px;}
.y4c{bottom:874.858500px;}
.y64{bottom:875.625000px;}
.y32{bottom:882.534000px;}
.ybd{bottom:883.735500px;}
.yfd{bottom:884.083500px;}
.yd5{bottom:884.178000px;}
.ya6{bottom:884.646000px;}
.y18{bottom:885.133500px;}
.yd4{bottom:890.155500px;}
.yd3{bottom:896.133000px;}
.yea{bottom:901.014000px;}
.y7b{bottom:904.729500px;}
.y8e{bottom:910.626000px;}
.y17{bottom:912.033000px;}
.y31{bottom:914.266500px;}
.ya5{bottom:915.132000px;}
.ybb{bottom:916.002000px;}
.y4b{bottom:926.604000px;}
.ybc{bottom:930.304500px;}
.ye9{bottom:931.500000px;}
.yba{bottom:934.350000px;}
.y63{bottom:935.634000px;}
.y16{bottom:938.932500px;}
.y3{bottom:942.895500px;}
.yfc{bottom:944.998500px;}
.ya3{bottom:951.025500px;}
.yd2{bottom:957.745500px;}
.ya4{bottom:958.206000px;}
.ye8{bottom:961.986000px;}
.ya2{bottom:962.251500px;}
.y30{bottom:963.612000px;}
.y7a{bottom:965.511000px;}
.y15{bottom:965.830500px;}
.y62{bottom:966.120000px;}
.y2{bottom:974.277000px;}
.yfb{bottom:975.484500px;}
.yb9{bottom:980.826000px;}
.y4a{bottom:987.462000px;}
.y8d{bottom:988.321500px;}
.ye7{bottom:992.470500px;}
.y14{bottom:992.730000px;}
.y2f{bottom:995.346000px;}
.y79{bottom:995.997000px;}
.y61{bottom:996.606000px;}
.ya1{bottom:1009.371000px;}
.y49{bottom:1017.948000px;}
.y8c{bottom:1018.807500px;}
.yd1{bottom:1019.025000px;}
.y13{bottom:1019.629500px;}
.y2e{bottom:1027.078500px;}
.y60{bottom:1027.090500px;}
.yfa{bottom:1027.230000px;}
.y77{bottom:1030.846500px;}
.yb8{bottom:1032.571500px;}
.ye6{bottom:1035.694500px;}
.y78{bottom:1038.025500px;}
.ya0{bottom:1039.855500px;}
.y1{bottom:1040.139000px;}
.y76{bottom:1042.071000px;}
.y48{bottom:1048.434000px;}
.y5f{bottom:1057.576500px;}
.y12{bottom:1058.334000px;}
.y2d{bottom:1058.812500px;}
.y11{bottom:1063.758000px;}
.ye5{bottom:1066.180500px;}
.y47{bottom:1078.920000px;}
.yd0{bottom:1080.304500px;}
.y75{bottom:1088.145000px;}
.yb7{bottom:1089.370500px;}
.yf{bottom:1090.725000px;}
.y9f{bottom:1091.667000px;}
.yb6{bottom:1093.416000px;}
.y10{bottom:1096.663500px;}
.y5e{bottom:1098.733500px;}
.y2c{bottom:1108.156500px;}
.y46{bottom:1109.404500px;}
.ycf{bottom:1139.343000px;}
.ye{bottom:1139.890500px;}
.y2b{bottom:1192.194000px;}
.hc{height:16.677504px;}
.ha{height:27.783619px;}
.h9{height:33.665702px;}
.h1d{height:37.464624px;}
.h7{height:37.927872px;}
.hb{height:41.842920px;}
.h2a{height:42.799330px;}
.h6{height:44.831700px;}
.h10{height:44.836401px;}
.h12{height:46.865494px;}
.h29{height:47.322090px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h28{height:50.645700px;}
.h11{height:50.727315px;}
.h2b{height:50.807700px;}
.h15{height:52.571702px;}
.h16{height:52.577702px;}
.h3{height:53.798400px;}
.hf{height:55.554699px;}
.h13{height:57.413702px;}
.h14{height:57.419702px;}
.h26{height:58.206000px;}
.h24{height:58.212000px;}
.h27{height:58.824699px;}
.hd{height:58.830699px;}
.h2{height:60.254040px;}
.h17{height:60.689702px;}
.h25{height:60.695702px;}
.h1a{height:65.272950px;}
.h23{height:66.909315px;}
.h4{height:67.226503px;}
.h1c{height:69.993315px;}
.h1f{height:71.632950px;}
.he{height:75.012699px;}
.h1e{height:79.961702px;}
.h20{height:99.828699px;}
.h18{height:99.834699px;}
.h1b{height:103.722699px;}
.h19{height:104.583470px;}
.h22{height:104.589470px;}
.h21{height:144.732699px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.215000px;}
.x11{left:108.000000px;}
.x18{left:110.739000px;}
.x1e{left:112.455000px;}
.x1a{left:114.363000px;}
.x15{left:120.273000px;}
.x1{left:125.574000px;}
.x14{left:126.636000px;}
.x1d{left:130.416000px;}
.xa7{left:131.625000px;}
.x13{left:132.999000px;}
.x58{left:148.459500px;}
.x16{left:150.406500px;}
.x17{left:151.542000px;}
.xa0{left:152.832000px;}
.x1b{left:154.497000px;}
.xa4{left:156.400500px;}
.x10{left:158.809500px;}
.x9b{left:163.458000px;}
.x7b{left:170.011500px;}
.x37{left:172.206000px;}
.xf{left:173.754000px;}
.x46{left:181.417500px;}
.x62{left:185.659500px;}
.x38{left:190.272000px;}
.xa5{left:192.936000px;}
.x39{left:200.299500px;}
.xa{left:213.412500px;}
.xd{left:214.422000px;}
.x36{left:218.544000px;}
.xe{left:221.125500px;}
.x92{left:225.942000px;}
.x27{left:228.171000px;}
.x3a{left:232.530000px;}
.x60{left:234.631500px;}
.x82{left:236.803500px;}
.x73{left:242.967000px;}
.x1f{left:246.337500px;}
.x28{left:248.499000px;}
.x75{left:252.304500px;}
.x65{left:254.866500px;}
.x83{left:260.157000px;}
.x8f{left:266.302500px;}
.x86{left:273.444000px;}
.x2{left:274.819500px;}
.x93{left:278.817000px;}
.x56{left:281.062500px;}
.x61{left:283.756500px;}
.x76{left:287.808000px;}
.x47{left:291.778500px;}
.x91{left:294.057000px;}
.x20{left:295.872000px;}
.x59{left:299.079000px;}
.x98{left:301.929000px;}
.x22{left:305.220000px;}
.x84{left:310.924500px;}
.x80{left:312.450000px;}
.x5a{left:314.011500px;}
.x5b{left:316.498500px;}
.x1c{left:318.513000px;}
.x6b{left:322.092000px;}
.x48{left:324.183000px;}
.xa3{left:326.667000px;}
.x23{left:328.179000px;}
.x6{left:329.793000px;}
.x5e{left:333.733500px;}
.x6c{left:335.211000px;}
.x5d{left:336.688500px;}
.x87{left:344.941500px;}
.x21{left:347.350500px;}
.x6a{left:348.585000px;}
.x3{left:349.918500px;}
.x69{left:351.540000px;}
.xa6{left:356.884500px;}
.x5f{left:360.553500px;}
.x74{left:361.723500px;}
.x8d{left:365.226000px;}
.x88{left:367.417500px;}
.x8a{left:369.888000px;}
.x26{left:371.098500px;}
.xa1{left:373.597500px;}
.x3e{left:377.511000px;}
.x90{left:378.526500px;}
.x5{left:381.384000px;}
.xb{left:382.602000px;}
.x5c{left:389.050500px;}
.x7{left:392.640000px;}
.x4{left:394.558500px;}
.x55{left:398.493000px;}
.x35{left:401.232000px;}
.x3f{left:406.963500px;}
.x12{left:409.203000px;}
.x8{left:414.060000px;}
.x40{left:420.831000px;}
.x41{left:428.370000px;}
.x8b{left:433.045500px;}
.x42{left:436.689000px;}
.x79{left:438.162000px;}
.x66{left:440.613000px;}
.x89{left:447.826500px;}
.x96{left:448.996500px;}
.x95{left:450.870000px;}
.x97{left:455.613000px;}
.x8c{left:459.711000px;}
.x8e{left:461.194500px;}
.x24{left:463.023000px;}
.x77{left:464.655000px;}
.x81{left:473.436000px;}
.x25{left:477.747000px;}
.x63{left:483.118500px;}
.x29{left:489.904500px;}
.x78{left:492.027000px;}
.x64{left:503.341500px;}
.x2a{left:509.278500px;}
.xc{left:511.759500px;}
.x7c{left:517.147500px;}
.x49{left:523.498500px;}
.x6d{left:525.972000px;}
.x3b{left:529.195500px;}
.x7d{left:538.315500px;}
.x52{left:539.850000px;}
.x9e{left:559.366500px;}
.x4a{left:564.616500px;}
.x4b{left:576.151500px;}
.x9f{left:579.591000px;}
.x7e{left:582.492000px;}
.x9c{left:588.181500px;}
.x57{left:589.981500px;}
.x9d{left:596.364000px;}
.x2b{left:602.923500px;}
.x7f{left:607.965000px;}
.x43{left:611.575500px;}
.x9a{left:613.635000px;}
.x4c{left:617.082000px;}
.x7a{left:618.556500px;}
.x99{left:622.995000px;}
.x44{left:626.443500px;}
.x45{left:629.965500px;}
.x67{left:634.858500px;}
.x2c{left:637.363500px;}
.x3c{left:639.381000px;}
.x2d{left:643.600500px;}
.x6e{left:646.750500px;}
.x2e{left:658.531500px;}
.x68{left:660.532500px;}
.x6f{left:665.995500px;}
.x4d{left:667.498500px;}
.x70{left:672.231000px;}
.x3d{left:681.598500px;}
.x2f{left:686.332500px;}
.x71{left:692.380500px;}
.x4e{left:701.938500px;}
.x30{left:708.363000px;}
.x31{left:714.598500px;}
.x53{left:716.605500px;}
.x4f{left:723.361500px;}
.xa2{left:727.915500px;}
.x54{left:731.538000px;}
.x32{left:733.515000px;}
.x33{left:743.272500px;}
.x72{left:763.740000px;}
.x50{left:768.906000px;}
.x34{left:771.678000px;}
.x94{left:791.013000px;}
.x51{left:795.433500px;}
.x19{left:799.195500px;}
.x85{left:805.089000px;}
@media print{
.v4{vertical-align:-20.314667pt;}
.va{vertical-align:-12.608000pt;}
.v2{vertical-align:-11.477333pt;}
.v5{vertical-align:-8.725333pt;}
.v3{vertical-align:-5.317333pt;}
.v15{vertical-align:-2.656000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.738667pt;}
.v10{vertical-align:8.400000pt;}
.vf{vertical-align:12.101333pt;}
.v7{vertical-align:14.384000pt;}
.vb{vertical-align:16.805333pt;}
.v11{vertical-align:20.037333pt;}
.v9{vertical-align:21.114667pt;}
.v6{vertical-align:24.026667pt;}
.ve{vertical-align:31.184000pt;}
.v8{vertical-align:38.410667pt;}
.vc{vertical-align:39.360000pt;}
.v12{vertical-align:41.152000pt;}
.v14{vertical-align:51.744000pt;}
.vd{vertical-align:60.474667pt;}
.v13{vertical-align:79.274667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.000353pt;}
.ls67{letter-spacing:0.001377pt;}
.ls62{letter-spacing:0.001414pt;}
.ls31{letter-spacing:0.001420pt;}
.lsf{letter-spacing:0.001422pt;}
.ls3c{letter-spacing:0.001899pt;}
.ls35{letter-spacing:0.001914pt;}
.ls5d{letter-spacing:0.002292pt;}
.ls18{letter-spacing:0.002389pt;}
.ls56{letter-spacing:0.002393pt;}
.ls50{letter-spacing:0.002400pt;}
.ls52{letter-spacing:0.003820pt;}
.ls49{letter-spacing:0.003841pt;}
.ls5b{letter-spacing:0.003892pt;}
.ls4b{letter-spacing:0.004826pt;}
.ls20{letter-spacing:0.008651pt;}
.ls66{letter-spacing:0.008876pt;}
.ls7{letter-spacing:0.011969pt;}
.ls36{letter-spacing:0.016358pt;}
.ls59{letter-spacing:0.020136pt;}
.ls43{letter-spacing:0.022176pt;}
.ls65{letter-spacing:0.067035pt;}
.ls24{letter-spacing:0.523637pt;}
.ls19{letter-spacing:0.581819pt;}
.lsc{letter-spacing:2.653258pt;}
.ls4f{letter-spacing:2.654275pt;}
.ls10{letter-spacing:2.655321pt;}
.ls2{letter-spacing:2.656495pt;}
.ls5e{letter-spacing:2.656546pt;}
.ls37{letter-spacing:2.657546pt;}
.ls9{letter-spacing:2.658591pt;}
.ls54{letter-spacing:2.659608pt;}
.ls21{letter-spacing:2.661425pt;}
.ls57{letter-spacing:4.145351pt;}
.ls8{letter-spacing:4.178961pt;}
.ls3f{letter-spacing:4.448942pt;}
.ls41{letter-spacing:4.454275pt;}
.ls2b{letter-spacing:4.712731pt;}
.ls17{letter-spacing:4.721414pt;}
.ls34{letter-spacing:5.972958pt;}
.ls1c{letter-spacing:6.383321pt;}
.ls1d{letter-spacing:8.494553pt;}
.ls11{letter-spacing:8.552734pt;}
.ls3b{letter-spacing:8.610916pt;}
.lsd{letter-spacing:9.716372pt;}
.lse{letter-spacing:12.916374pt;}
.ls15{letter-spacing:13.381829pt;}
.ls2e{letter-spacing:15.581258pt;}
.ls1f{letter-spacing:15.584092pt;}
.ls3e{letter-spacing:15.585546pt;}
.ls32{letter-spacing:15.586591pt;}
.lsb{letter-spacing:16.116377pt;}
.lsa{letter-spacing:16.174559pt;}
.ls6{letter-spacing:16.698196pt;}
.ls2d{letter-spacing:17.629106pt;}
.ls30{letter-spacing:18.082400pt;}
.ls4c{letter-spacing:18.087733pt;}
.ls4d{letter-spacing:18.814275pt;}
.ls25{letter-spacing:18.817546pt;}
.ls33{letter-spacing:18.819608pt;}
.ls2c{letter-spacing:18.822879pt;}
.ls28{letter-spacing:19.025470pt;}
.ls4{letter-spacing:19.039527pt;}
.ls27{letter-spacing:19.083652pt;}
.ls2f{letter-spacing:19.306144pt;}
.ls58{letter-spacing:19.374562pt;}
.ls1b{letter-spacing:19.432743pt;}
.ls51{letter-spacing:19.549107pt;}
.ls55{letter-spacing:20.340811pt;}
.ls61{letter-spacing:20.366544pt;}
.ls48{letter-spacing:20.538199pt;}
.ls3d{letter-spacing:20.614275pt;}
.ls23{letter-spacing:20.712745pt;}
.ls14{letter-spacing:20.887290pt;}
.ls42{letter-spacing:21.352745pt;}
.ls1a{letter-spacing:21.472473pt;}
.ls39{letter-spacing:21.477806pt;}
.ls29{letter-spacing:21.992746pt;}
.ls46{letter-spacing:22.045258pt;}
.ls3a{letter-spacing:22.049546pt;}
.ls63{letter-spacing:22.054879pt;}
.ls22{letter-spacing:22.807292pt;}
.ls2a{letter-spacing:23.796383pt;}
.ls53{letter-spacing:24.378202pt;}
.ls4a{letter-spacing:26.128473pt;}
.ls4e{letter-spacing:26.240022pt;}
.ls47{letter-spacing:26.472749pt;}
.ls44{letter-spacing:26.530931pt;}
.ls38{letter-spacing:26.589113pt;}
.ls26{letter-spacing:26.996386pt;}
.ls64{letter-spacing:31.883663pt;}
.ls1{letter-spacing:31.896474pt;}
.ls5a{letter-spacing:63.499139pt;}
.ls60{letter-spacing:66.910544pt;}
.ls40{letter-spacing:69.120058pt;}
.ls12{letter-spacing:126.080105pt;}
.ls0{letter-spacing:306.975635pt;}
.ls5f{letter-spacing:339.907733pt;}
.ls5c{letter-spacing:342.560631pt;}
.ls13{letter-spacing:572.160477pt;}
.ls5{letter-spacing:688.220213pt;}
.ls1e{letter-spacing:707.724226pt;}
.ls16{letter-spacing:808.087946pt;}
.ws60{word-spacing:-58.240049pt;}
.ws34{word-spacing:-58.181867pt;}
.ws51{word-spacing:-48.523677pt;}
.ws31{word-spacing:-45.672765pt;}
.ws2b{word-spacing:-45.265492pt;}
.ws55{word-spacing:-42.065490pt;}
.ws41{word-spacing:-42.007308pt;}
.ws16{word-spacing:-37.899668pt;}
.ws6b{word-spacing:-34.611401pt;}
.ws2a{word-spacing:-32.337481pt;}
.ws6f{word-spacing:-30.551973pt;}
.ws35{word-spacing:-29.521250pt;}
.ws2c{word-spacing:-29.090933pt;}
.ws54{word-spacing:-28.241478pt;}
.ws33{word-spacing:-28.183296pt;}
.ws8a{word-spacing:-27.156719pt;}
.ws6e{word-spacing:-26.566933pt;}
.ws13{word-spacing:-24.575109pt;}
.ws43{word-spacing:-23.546747pt;}
.ws42{word-spacing:-23.544030pt;}
.ws29{word-spacing:-21.783291pt;}
.ws2d{word-spacing:-21.725109pt;}
.ws57{word-spacing:-18.094561pt;}
.ws4e{word-spacing:-17.861833pt;}
.ws36{word-spacing:-16.162923pt;}
.ws58{word-spacing:-15.709104pt;}
.ws4f{word-spacing:-15.534558pt;}
.ws49{word-spacing:-15.301831pt;}
.ws7a{word-spacing:-14.952740pt;}
.ws66{word-spacing:-14.545467pt;}
.ws59{word-spacing:-14.376739pt;}
.ws0{word-spacing:-14.346200pt;}
.ws72{word-spacing:-14.312739pt;}
.ws50{word-spacing:-14.202194pt;}
.ws4a{word-spacing:-13.323647pt;}
.ws73{word-spacing:-12.858193pt;}
.ws37{word-spacing:-12.800011pt;}
.ws81{word-spacing:-12.645860pt;}
.ws67{word-spacing:-12.625465pt;}
.ws7c{word-spacing:-12.450919pt;}
.ws4b{word-spacing:-12.224010pt;}
.ws4c{word-spacing:-12.165828pt;}
.ws3d{word-spacing:-12.101828pt;}
.ws28{word-spacing:-11.985465pt;}
.ws3{word-spacing:-11.955200pt;}
.ws27{word-spacing:-11.927283pt;}
.wsf{word-spacing:-11.742585pt;}
.ws5c{word-spacing:-11.578191pt;}
.ws63{word-spacing:-11.461828pt;}
.ws82{word-spacing:-11.211246pt;}
.ws56{word-spacing:-11.170918pt;}
.ws53{word-spacing:-11.112737pt;}
.ws4d{word-spacing:-10.944009pt;}
.ws1d{word-spacing:-10.938191pt;}
.ws84{word-spacing:-10.679907pt;}
.ws70{word-spacing:-10.472736pt;}
.ws1e{word-spacing:-10.298190pt;}
.ws83{word-spacing:-10.260150pt;}
.ws18{word-spacing:-10.201702pt;}
.ws62{word-spacing:-10.148569pt;}
.ws76{word-spacing:-10.123645pt;}
.ws40{word-spacing:-10.065463pt;}
.ws11{word-spacing:-10.007281pt;}
.ws64{word-spacing:-9.949099pt;}
.ws74{word-spacing:-9.890917pt;}
.ws75{word-spacing:-9.832735pt;}
.ws3e{word-spacing:-9.774554pt;}
.ws12{word-spacing:-9.716372pt;}
.ws14{word-spacing:-9.658190pt;}
.ws3f{word-spacing:-9.600008pt;}
.ws2f{word-spacing:-9.541826pt;}
.ws8c{word-spacing:-9.510962pt;}
.ws2e{word-spacing:-9.483644pt;}
.ws7d{word-spacing:-9.425462pt;}
.ws1a{word-spacing:-9.367281pt;}
.ws80{word-spacing:-9.303740pt;}
.ws71{word-spacing:-9.250917pt;}
.ws5d{word-spacing:-9.198553pt;}
.ws19{word-spacing:-9.192735pt;}
.ws86{word-spacing:-9.139025pt;}
.wse{word-spacing:-9.032757pt;}
.ws1c{word-spacing:-9.018189pt;}
.ws5a{word-spacing:-8.965826pt;}
.ws47{word-spacing:-8.907644pt;}
.ws4{word-spacing:-8.873356pt;}
.ws21{word-spacing:-8.843644pt;}
.ws6c{word-spacing:-8.820222pt;}
.ws7f{word-spacing:-8.713954pt;}
.ws8d{word-spacing:-8.666134pt;}
.wsc{word-spacing:-8.660820pt;}
.wsb{word-spacing:-8.607686pt;}
.ws44{word-spacing:-8.378189pt;}
.ws87{word-spacing:-8.347330pt;}
.ws20{word-spacing:-8.209461pt;}
.ws85{word-spacing:-8.187929pt;}
.ws5{word-spacing:-8.172575pt;}
.ws8b{word-spacing:-8.134795pt;}
.ws10{word-spacing:-8.029098pt;}
.ws45{word-spacing:-7.744006pt;}
.wsd{word-spacing:-7.651277pt;}
.ws22{word-spacing:-7.214551pt;}
.ws7b{word-spacing:-7.156370pt;}
.ws77{word-spacing:-6.981824pt;}
.ws23{word-spacing:-6.638551pt;}
.ws3c{word-spacing:-6.283642pt;}
.ws39{word-spacing:-5.992732pt;}
.ws15{word-spacing:-5.178186pt;}
.ws78{word-spacing:-4.887277pt;}
.wsa{word-spacing:-4.468558pt;}
.ws32{word-spacing:-4.198164pt;}
.ws5f{word-spacing:-4.189094pt;}
.ws38{word-spacing:-3.840003pt;}
.ws1f{word-spacing:-3.432730pt;}
.ws88{word-spacing:-3.400567pt;}
.ws3a{word-spacing:-3.246548pt;}
.ws89{word-spacing:-3.140212pt;}
.ws61{word-spacing:-2.850911pt;}
.ws1b{word-spacing:-1.920002pt;}
.ws7e{word-spacing:-0.872728pt;}
.ws2{word-spacing:-0.076513pt;}
.ws25{word-spacing:-0.058182pt;}
.ws6{word-spacing:-0.047821pt;}
.ws3b{word-spacing:-0.046545pt;}
.ws5e{word-spacing:-0.005818pt;}
.ws7{word-spacing:0.000000pt;}
.ws24{word-spacing:0.011636pt;}
.ws5b{word-spacing:0.052364pt;}
.ws65{word-spacing:0.186182pt;}
.ws30{word-spacing:0.302546pt;}
.ws48{word-spacing:2.146911pt;}
.ws8{word-spacing:2.385457pt;}
.ws46{word-spacing:2.513457pt;}
.ws26{word-spacing:9.669826pt;}
.ws9{word-spacing:10.159221pt;}
.ws1{word-spacing:20.786108pt;}
.ws79{word-spacing:30.551973pt;}
.ws52{word-spacing:88.122255pt;}
.ws68{word-spacing:88.180437pt;}
.ws69{word-spacing:313.312792pt;}
.ws6a{word-spacing:313.333244pt;}
.ws6d{word-spacing:343.581875pt;}
.ws17{word-spacing:1981.446055pt;}
._32{margin-left:-32.814573pt;}
._30{margin-left:-16.174559pt;}
._0{margin-left:-9.564133pt;}
._2e{margin-left:-6.445137pt;}
._2{margin-left:-5.228407pt;}
._5{margin-left:-3.671595pt;}
._6{margin-left:-2.656693pt;}
._3{margin-left:-1.487748pt;}
._4{width:1.344286pt;}
._1{width:2.371905pt;}
._33{width:3.720220pt;}
._2f{width:4.767493pt;}
._35{width:6.376200pt;}
._34{width:16.098823pt;}
._36{width:18.115125pt;}
._23{width:20.278771pt;}
._39{width:21.343875pt;}
._7{width:23.750838pt;}
._2a{width:25.288547pt;}
._20{width:26.198420pt;}
._8{width:28.660443pt;}
._2d{width:30.138207pt;}
._3d{width:31.880320pt;}
._3c{width:34.653531pt;}
._29{width:39.773535pt;}
._28{width:42.261031pt;}
._2b{width:45.065966pt;}
._2c{width:57.528331pt;}
._27{width:61.103947pt;}
._38{width:115.087955pt;}
._31{width:126.080105pt;}
._3a{width:136.963169pt;}
._37{width:222.577767pt;}
._21{width:362.151037pt;}
._3b{width:370.273521pt;}
._1b{width:847.233824pt;}
._10{width:919.192053pt;}
._1d{width:1095.903122pt;}
._c{width:1109.276730pt;}
._14{width:1167.807688pt;}
._19{width:1193.873164pt;}
._15{width:1215.847033pt;}
._e{width:1220.287732pt;}
._b{width:1252.760662pt;}
._d{width:1256.372729pt;}
._13{width:1293.112551pt;}
._a{width:1345.089954pt;}
._18{width:1348.127617pt;}
._1a{width:1360.088101pt;}
._11{width:1382.446697pt;}
._24{width:1412.490291pt;}
._16{width:1423.159940pt;}
._f{width:1437.821771pt;}
._1c{width:1496.692226pt;}
._17{width:1511.753903pt;}
._26{width:1553.883678pt;}
._1e{width:1575.845340pt;}
._25{width:1637.432838pt;}
._12{width:1675.857851pt;}
._9{width:1710.089784pt;}
._1f{width:1733.653440pt;}
._22{width:1977.244268pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:142.501333pt;}
.y2a{bottom:154.156000pt;}
.yce{bottom:166.072000pt;}
.y44{bottom:169.600000pt;}
.y74{bottom:177.757333pt;}
.y8b{bottom:183.456000pt;}
.y5d{bottom:183.886667pt;}
.yb5{bottom:184.385333pt;}
.y9e{bottom:190.925333pt;}
.y29{bottom:192.333333pt;}
.y9d{bottom:195.934667pt;}
.y43{bottom:196.698667pt;}
.ycd{bottom:197.538667pt;}
.y73{bottom:204.856000pt;}
.y5c{bottom:210.985333pt;}
.ye4{bottom:212.205333pt;}
.y9c{bottom:218.024000pt;}
.y28{bottom:219.664000pt;}
.ycc{bottom:221.449333pt;}
.y9b{bottom:223.033333pt;}
.y42{bottom:223.796000pt;}
.y8a{bottom:229.452000pt;}
.yb4{bottom:230.438667pt;}
.y72{bottom:240.110667pt;}
.ycb{bottom:245.360000pt;}
.y27{bottom:246.994667pt;}
.yd{bottom:248.576000pt;}
.y41{bottom:250.894667pt;}
.ye3{bottom:254.812000pt;}
.y5b{bottom:256.981333pt;}
.yf9{bottom:269.792000pt;}
.yca{bottom:269.801333pt;}
.y9a{bottom:271.638667pt;}
.yc{bottom:273.150667pt;}
.yb3{bottom:273.305333pt;}
.y26{bottom:274.325333pt;}
.y71{bottom:275.366667pt;}
.y40{bottom:279.102667pt;}
.ye2{bottom:281.910667pt;}
.y89{bottom:283.480000pt;}
.y10d{bottom:287.950667pt;}
.yb{bottom:297.725333pt;}
.y70{bottom:302.465333pt;}
.y3f{bottom:306.201333pt;}
.ye1{bottom:309.308000pt;}
.y5a{bottom:311.077333pt;}
.y10c{bottom:311.861333pt;}
.y25{bottom:316.434667pt;}
.ya{bottom:322.298667pt;}
.yf8{bottom:323.238667pt;}
.y88{bottom:324.434667pt;}
.yb2{bottom:327.782667pt;}
.yc9{bottom:328.970667pt;}
.y3e{bottom:333.298667pt;}
.y10b{bottom:335.772000pt;}
.ye0{bottom:336.405333pt;}
.y6f{bottom:337.721333pt;}
.y99{bottom:340.702667pt;}
.y24{bottom:343.765333pt;}
.y9{bottom:346.873333pt;}
.yf7{bottom:350.337333pt;}
.y59{bottom:352.462667pt;}
.y10a{bottom:359.682667pt;}
.y3d{bottom:360.397333pt;}
.ydf{bottom:363.504000pt;}
.yb1{bottom:368.454667pt;}
.y87{bottom:370.430667pt;}
.y23{bottom:371.096000pt;}
.y6e{bottom:372.976000pt;}
.yc8{bottom:373.176000pt;}
.yf6{bottom:377.434667pt;}
.y109{bottom:383.592000pt;}
.y98{bottom:390.244000pt;}
.y58{bottom:393.848000pt;}
.yb0{bottom:395.552000pt;}
.y22{bottom:398.426667pt;}
.y6d{bottom:400.074667pt;}
.y3c{bottom:407.502667pt;}
.yde{bottom:409.798667pt;}
.y86{bottom:413.238667pt;}
.yf5{bottom:413.358667pt;}
.yc7{bottom:417.489333pt;}
.y57{bottom:420.946667pt;}
.y21{bottom:425.757333pt;}
.y108{bottom:431.413333pt;}
.ydd{bottom:433.709333pt;}
.yaf{bottom:436.224000pt;}
.y97{bottom:439.784000pt;}
.y6c{bottom:446.070667pt;}
.y56{bottom:448.044000pt;}
.yf4{bottom:452.253333pt;}
.y20{bottom:453.088000pt;}
.y107{bottom:455.324000pt;}
.yae{bottom:463.322667pt;}
.y85{bottom:467.266667pt;}
.y3b{bottom:467.988000pt;}
.y8{bottom:472.541333pt;}
.y55{bottom:475.142667pt;}
.yc6{bottom:476.596000pt;}
.y106{bottom:479.233333pt;}
.ydc{bottom:479.396000pt;}
.y1f{bottom:480.418667pt;}
.y96{bottom:488.390667pt;}
.yf3{bottom:491.149333pt;}
.y84{bottom:494.365333pt;}
.y6b{bottom:499.412000pt;}
.y105{bottom:503.144000pt;}
.yad{bottom:509.376000pt;}
.y3a{bottom:511.849333pt;}
.y54{bottom:516.528000pt;}
.yc5{bottom:519.101333pt;}
.y7{bottom:519.129333pt;}
.y1e{bottom:522.526667pt;}
.yd9{bottom:524.604000pt;}
.y104{bottom:527.054667pt;}
.yf2{bottom:530.045333pt;}
.y6a{bottom:535.996000pt;}
.y39{bottom:540.057333pt;}
.y83{bottom:540.361333pt;}
.y6{bottom:543.040000pt;}
.yd8{bottom:548.514667pt;}
.y103{bottom:550.965333pt;}
.yc4{bottom:555.396000pt;}
.y95{bottom:557.453333pt;}
.y53{bottom:557.913333pt;}
.yac{bottom:563.853333pt;}
.y1d{bottom:564.634667pt;}
.yf1{bottom:565.968000pt;}
.y5{bottom:566.949333pt;}
.y38{bottom:568.265333pt;}
.y102{bottom:574.874667pt;}
.y69{bottom:581.992000pt;}
.yab{bottom:590.952000pt;}
.yc3{bottom:592.425333pt;}
.yf0{bottom:593.065333pt;}
.y82{bottom:594.389333pt;}
.y37{bottom:596.472000pt;}
.yc2{bottom:596.706667pt;}
.y52{bottom:599.300000pt;}
.y93{bottom:599.628000pt;}
.y94{bottom:605.324000pt;}
.y1c{bottom:606.744000pt;}
.yd7{bottom:613.660000pt;}
.yaa{bottom:618.050667pt;}
.y92{bottom:619.445333pt;}
.yef{bottom:620.164000pt;}
.y80{bottom:625.366667pt;}
.y81{bottom:631.062667pt;}
.y68{bottom:635.333333pt;}
.yc1{bottom:638.018667pt;}
.y36{bottom:640.334667pt;}
.y51{bottom:640.685333pt;}
.y7f{bottom:645.184000pt;}
.yee{bottom:647.262667pt;}
.y1b{bottom:652.972000pt;}
.y101{bottom:658.561333pt;}
.ya9{bottom:658.721333pt;}
.y91{bottom:659.146667pt;}
.y67{bottom:662.430667pt;}
.y50{bottom:667.782667pt;}
.y7e{bottom:676.298667pt;}
.ydb{bottom:682.126667pt;}
.yc0{bottom:684.014667pt;}
.y35{bottom:684.197333pt;}
.y100{bottom:685.660000pt;}
.ya8{bottom:685.820000pt;}
.y66{bottom:689.529333pt;}
.yed{bottom:693.258667pt;}
.y4f{bottom:694.881333pt;}
.y4{bottom:701.244000pt;}
.yda{bottom:706.037333pt;}
.y1a{bottom:708.446667pt;}
.y90{bottom:711.297333pt;}
.yff{bottom:712.758667pt;}
.y7d{bottom:717.253333pt;}
.ybf{bottom:727.922667pt;}
.y34{bottom:728.058667pt;}
.ya7{bottom:731.874667pt;}
.y4e{bottom:732.670667pt;}
.y65{bottom:735.525333pt;}
.y19{bottom:735.544000pt;}
.y4d{bottom:736.266667pt;}
.yfe{bottom:739.856000pt;}
.ybe{bottom:744.232000pt;}
.yd6{bottom:744.314667pt;}
.yec{bottom:746.704000pt;}
.y33{bottom:756.266667pt;}
.y7c{bottom:758.208000pt;}
.y8f{bottom:760.838667pt;}
.yeb{bottom:773.802667pt;}
.y4c{bottom:777.652000pt;}
.y64{bottom:778.333333pt;}
.y32{bottom:784.474667pt;}
.ybd{bottom:785.542667pt;}
.yfd{bottom:785.852000pt;}
.yd5{bottom:785.936000pt;}
.ya6{bottom:786.352000pt;}
.y18{bottom:786.785333pt;}
.yd4{bottom:791.249333pt;}
.yd3{bottom:796.562667pt;}
.yea{bottom:800.901333pt;}
.y7b{bottom:804.204000pt;}
.y8e{bottom:809.445333pt;}
.y17{bottom:810.696000pt;}
.y31{bottom:812.681333pt;}
.ya5{bottom:813.450667pt;}
.ybb{bottom:814.224000pt;}
.y4b{bottom:823.648000pt;}
.ybc{bottom:826.937333pt;}
.ye9{bottom:828.000000pt;}
.yba{bottom:830.533333pt;}
.y63{bottom:831.674667pt;}
.y16{bottom:834.606667pt;}
.y3{bottom:838.129333pt;}
.yfc{bottom:839.998667pt;}
.ya3{bottom:845.356000pt;}
.yd2{bottom:851.329333pt;}
.ya4{bottom:851.738667pt;}
.ye8{bottom:855.098667pt;}
.ya2{bottom:855.334667pt;}
.y30{bottom:856.544000pt;}
.y7a{bottom:858.232000pt;}
.y15{bottom:858.516000pt;}
.y62{bottom:858.773333pt;}
.y2{bottom:866.024000pt;}
.yfb{bottom:867.097333pt;}
.yb9{bottom:871.845333pt;}
.y4a{bottom:877.744000pt;}
.y8d{bottom:878.508000pt;}
.ye7{bottom:882.196000pt;}
.y14{bottom:882.426667pt;}
.y2f{bottom:884.752000pt;}
.y79{bottom:885.330667pt;}
.y61{bottom:885.872000pt;}
.ya1{bottom:897.218667pt;}
.y49{bottom:904.842667pt;}
.y8c{bottom:905.606667pt;}
.yd1{bottom:905.800000pt;}
.y13{bottom:906.337333pt;}
.y2e{bottom:912.958667pt;}
.y60{bottom:912.969333pt;}
.yfa{bottom:913.093333pt;}
.y77{bottom:916.308000pt;}
.yb8{bottom:917.841333pt;}
.ye6{bottom:920.617333pt;}
.y78{bottom:922.689333pt;}
.ya0{bottom:924.316000pt;}
.y1{bottom:924.568000pt;}
.y76{bottom:926.285333pt;}
.y48{bottom:931.941333pt;}
.y5f{bottom:940.068000pt;}
.y12{bottom:940.741333pt;}
.y2d{bottom:941.166667pt;}
.y11{bottom:945.562667pt;}
.ye5{bottom:947.716000pt;}
.y47{bottom:959.040000pt;}
.yd0{bottom:960.270667pt;}
.y75{bottom:967.240000pt;}
.yb7{bottom:968.329333pt;}
.yf{bottom:969.533333pt;}
.y9f{bottom:970.370667pt;}
.yb6{bottom:971.925333pt;}
.y10{bottom:974.812000pt;}
.y5e{bottom:976.652000pt;}
.y2c{bottom:985.028000pt;}
.y46{bottom:986.137333pt;}
.ycf{bottom:1012.749333pt;}
.ye{bottom:1013.236000pt;}
.y2b{bottom:1059.728000pt;}
.hc{height:14.824448pt;}
.ha{height:24.696550pt;}
.h9{height:29.925069pt;}
.h1d{height:33.301888pt;}
.h7{height:33.713664pt;}
.hb{height:37.193707pt;}
.h2a{height:38.043849pt;}
.h6{height:39.850400pt;}
.h10{height:39.854579pt;}
.h12{height:41.658217pt;}
.h29{height:42.064080pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h28{height:45.018400pt;}
.h11{height:45.090947pt;}
.h2b{height:45.162400pt;}
.h15{height:46.730402pt;}
.h16{height:46.735735pt;}
.h3{height:47.820800pt;}
.hf{height:49.381955pt;}
.h13{height:51.034402pt;}
.h14{height:51.039735pt;}
.h26{height:51.738667pt;}
.h24{height:51.744000pt;}
.h27{height:52.288621pt;}
.hd{height:52.293955pt;}
.h2{height:53.559147pt;}
.h17{height:53.946402pt;}
.h25{height:53.951735pt;}
.h1a{height:58.020400pt;}
.h23{height:59.474947pt;}
.h4{height:59.756892pt;}
.h1c{height:62.216280pt;}
.h1f{height:63.673733pt;}
.he{height:66.677955pt;}
.h1e{height:71.077069pt;}
.h20{height:88.736621pt;}
.h18{height:88.741955pt;}
.h1b{height:92.197955pt;}
.h19{height:92.963084pt;}
.h22{height:92.968418pt;}
.h21{height:128.651288pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.413333pt;}
.x11{left:96.000000pt;}
.x18{left:98.434667pt;}
.x1e{left:99.960000pt;}
.x1a{left:101.656000pt;}
.x15{left:106.909333pt;}
.x1{left:111.621333pt;}
.x14{left:112.565333pt;}
.x1d{left:115.925333pt;}
.xa7{left:117.000000pt;}
.x13{left:118.221333pt;}
.x58{left:131.964000pt;}
.x16{left:133.694667pt;}
.x17{left:134.704000pt;}
.xa0{left:135.850667pt;}
.x1b{left:137.330667pt;}
.xa4{left:139.022667pt;}
.x10{left:141.164000pt;}
.x9b{left:145.296000pt;}
.x7b{left:151.121333pt;}
.x37{left:153.072000pt;}
.xf{left:154.448000pt;}
.x46{left:161.260000pt;}
.x62{left:165.030667pt;}
.x38{left:169.130667pt;}
.xa5{left:171.498667pt;}
.x39{left:178.044000pt;}
.xa{left:189.700000pt;}
.xd{left:190.597333pt;}
.x36{left:194.261333pt;}
.xe{left:196.556000pt;}
.x92{left:200.837333pt;}
.x27{left:202.818667pt;}
.x3a{left:206.693333pt;}
.x60{left:208.561333pt;}
.x82{left:210.492000pt;}
.x73{left:215.970667pt;}
.x1f{left:218.966667pt;}
.x28{left:220.888000pt;}
.x75{left:224.270667pt;}
.x65{left:226.548000pt;}
.x83{left:231.250667pt;}
.x8f{left:236.713333pt;}
.x86{left:243.061333pt;}
.x2{left:244.284000pt;}
.x93{left:247.837333pt;}
.x56{left:249.833333pt;}
.x61{left:252.228000pt;}
.x76{left:255.829333pt;}
.x47{left:259.358667pt;}
.x91{left:261.384000pt;}
.x20{left:262.997333pt;}
.x59{left:265.848000pt;}
.x98{left:268.381333pt;}
.x22{left:271.306667pt;}
.x84{left:276.377333pt;}
.x80{left:277.733333pt;}
.x5a{left:279.121333pt;}
.x5b{left:281.332000pt;}
.x1c{left:283.122667pt;}
.x6b{left:286.304000pt;}
.x48{left:288.162667pt;}
.xa3{left:290.370667pt;}
.x23{left:291.714667pt;}
.x6{left:293.149333pt;}
.x5e{left:296.652000pt;}
.x6c{left:297.965333pt;}
.x5d{left:299.278667pt;}
.x87{left:306.614667pt;}
.x21{left:308.756000pt;}
.x6a{left:309.853333pt;}
.x3{left:311.038667pt;}
.x69{left:312.480000pt;}
.xa6{left:317.230667pt;}
.x5f{left:320.492000pt;}
.x74{left:321.532000pt;}
.x8d{left:324.645333pt;}
.x88{left:326.593333pt;}
.x8a{left:328.789333pt;}
.x26{left:329.865333pt;}
.xa1{left:332.086667pt;}
.x3e{left:335.565333pt;}
.x90{left:336.468000pt;}
.x5{left:339.008000pt;}
.xb{left:340.090667pt;}
.x5c{left:345.822667pt;}
.x7{left:349.013333pt;}
.x4{left:350.718667pt;}
.x55{left:354.216000pt;}
.x35{left:356.650667pt;}
.x3f{left:361.745333pt;}
.x12{left:363.736000pt;}
.x8{left:368.053333pt;}
.x40{left:374.072000pt;}
.x41{left:380.773333pt;}
.x8b{left:384.929333pt;}
.x42{left:388.168000pt;}
.x79{left:389.477333pt;}
.x66{left:391.656000pt;}
.x89{left:398.068000pt;}
.x96{left:399.108000pt;}
.x95{left:400.773333pt;}
.x97{left:404.989333pt;}
.x8c{left:408.632000pt;}
.x8e{left:409.950667pt;}
.x24{left:411.576000pt;}
.x77{left:413.026667pt;}
.x81{left:420.832000pt;}
.x25{left:424.664000pt;}
.x63{left:429.438667pt;}
.x29{left:435.470667pt;}
.x78{left:437.357333pt;}
.x64{left:447.414667pt;}
.x2a{left:452.692000pt;}
.xc{left:454.897333pt;}
.x7c{left:459.686667pt;}
.x49{left:465.332000pt;}
.x6d{left:467.530667pt;}
.x3b{left:470.396000pt;}
.x7d{left:478.502667pt;}
.x52{left:479.866667pt;}
.x9e{left:497.214667pt;}
.x4a{left:501.881333pt;}
.x4b{left:512.134667pt;}
.x9f{left:515.192000pt;}
.x7e{left:517.770667pt;}
.x9c{left:522.828000pt;}
.x57{left:524.428000pt;}
.x9d{left:530.101333pt;}
.x2b{left:535.932000pt;}
.x7f{left:540.413333pt;}
.x43{left:543.622667pt;}
.x9a{left:545.453333pt;}
.x4c{left:548.517333pt;}
.x7a{left:549.828000pt;}
.x99{left:553.773333pt;}
.x44{left:556.838667pt;}
.x45{left:559.969333pt;}
.x67{left:564.318667pt;}
.x2c{left:566.545333pt;}
.x3c{left:568.338667pt;}
.x2d{left:572.089333pt;}
.x6e{left:574.889333pt;}
.x2e{left:585.361333pt;}
.x68{left:587.140000pt;}
.x6f{left:591.996000pt;}
.x4d{left:593.332000pt;}
.x70{left:597.538667pt;}
.x3d{left:605.865333pt;}
.x2f{left:610.073333pt;}
.x71{left:615.449333pt;}
.x4e{left:623.945333pt;}
.x30{left:629.656000pt;}
.x31{left:635.198667pt;}
.x53{left:636.982667pt;}
.x4f{left:642.988000pt;}
.xa2{left:647.036000pt;}
.x54{left:650.256000pt;}
.x32{left:652.013333pt;}
.x33{left:660.686667pt;}
.x72{left:678.880000pt;}
.x50{left:683.472000pt;}
.x34{left:685.936000pt;}
.x94{left:703.122667pt;}
.x51{left:707.052000pt;}
.x19{left:710.396000pt;}
.x85{left:715.634667pt;}
}




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