
    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_d36ba5b96d7320798f4fff22.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d81a71c630d44847f9f20bf3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_8cedc81c7feee0d3b6d10f25.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_3d114805c25f6414ab60878c.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_ecc238eb397c9c2bf25bc154.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4c3e32a3072854716a204283.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_615588f1b169639c5e29c34b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.723000;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_05ae1e663efa630acdbf7566.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_215e36715a93e4609d4344f2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f4eebd0b8465c53690c668e9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.930000;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_4dfc096f13a827a349ad32ea.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8e616e02e5ca0d1cb7a13671.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.994000;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_d486f2ba3dfab7b9e315cf2b.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_845be6b5155790971aec36e9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3d777c9f80d7f441940b89cb.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_f11a09ab5ba1a98b2318cfb2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.686000;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_23d88e77c55b8fdcbaed328f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.703450;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_4615e7e622346d48aba677f3.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;}
.m9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m3{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);}
.m5{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);}
.me{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);}
.mb{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);}
.mf{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);}
.m1c{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m2{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);}
.m1a{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);}
.m8{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);}
.m10{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);}
.m17{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m12{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);}
.m18{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);}
.m13{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m7{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);}
.m16{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m15{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.md{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);}
.ma{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);}
.v12{vertical-align:-142.470000px;}
.v2{vertical-align:-135.828000px;}
.v17{vertical-align:-61.578000px;}
.v13{vertical-align:-59.688000px;}
.v4{vertical-align:-53.046000px;}
.v10{vertical-align:-49.572000px;}
.v7{vertical-align:-18.924000px;}
.vf{vertical-align:-16.458000px;}
.v1{vertical-align:-9.816000px;}
.ve{vertical-align:-8.148000px;}
.v14{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:16.542000px;}
.v6{vertical-align:18.912000px;}
.v9{vertical-align:23.748000px;}
.vb{vertical-align:27.024000px;}
.v5{vertical-align:44.280000px;}
.va{vertical-align:49.842000px;}
.v15{vertical-align:58.206000px;}
.v8{vertical-align:63.852000px;}
.v3{vertical-align:82.782000px;}
.v11{vertical-align:89.178000px;}
.vd{vertical-align:108.750000px;}
.vc{vertical-align:127.680000px;}
.ls15{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.000843px;}
.ls41{letter-spacing:0.001059px;}
.ls25{letter-spacing:0.001350px;}
.ls44{letter-spacing:0.001611px;}
.ls1f{letter-spacing:0.002147px;}
.ls1a{letter-spacing:0.002696px;}
.ls22{letter-spacing:0.002706px;}
.ls4{letter-spacing:0.004335px;}
.ls37{letter-spacing:0.004338px;}
.ls7{letter-spacing:0.008260px;}
.ls66{letter-spacing:0.009506px;}
.ls31{letter-spacing:0.010092px;}
.lsf{letter-spacing:0.012296px;}
.ls35{letter-spacing:0.012394px;}
.ls5e{letter-spacing:0.017320px;}
.ls5d{letter-spacing:0.018823px;}
.ls55{letter-spacing:0.019729px;}
.ls38{letter-spacing:0.019986px;}
.ls52{letter-spacing:0.026022px;}
.ls43{letter-spacing:0.028789px;}
.ls62{letter-spacing:0.029289px;}
.ls4e{letter-spacing:0.032022px;}
.ls40{letter-spacing:0.034789px;}
.ls60{letter-spacing:1.291156px;}
.ls2e{letter-spacing:1.865003px;}
.ls65{letter-spacing:2.008465px;}
.ls2a{letter-spacing:2.290911px;}
.ls1c{letter-spacing:2.360101px;}
.ls58{letter-spacing:2.366101px;}
.ls6e{letter-spacing:2.821415px;}
.ls3a{letter-spacing:2.880002px;}
.ls74{letter-spacing:2.986053px;}
.ls39{letter-spacing:2.987236px;}
.ls6b{letter-spacing:2.988103px;}
.ls3e{letter-spacing:2.990915px;}
.ls2f{letter-spacing:2.991376px;}
.ls72{letter-spacing:2.992053px;}
.ls75{letter-spacing:3.010912px;}
.ls6d{letter-spacing:3.734425px;}
.ls61{letter-spacing:4.265644px;}
.ls21{letter-spacing:4.698621px;}
.ls19{letter-spacing:4.704621px;}
.ls34{letter-spacing:4.712731px;}
.ls32{letter-spacing:4.859780px;}
.ls42{letter-spacing:5.982532px;}
.ls70{letter-spacing:6.010798px;}
.ls73{letter-spacing:7.003642px;}
.ls6a{letter-spacing:7.043428px;}
.lse{letter-spacing:7.069097px;}
.ls5{letter-spacing:8.508587px;}
.ls2{letter-spacing:8.514587px;}
.ls30{letter-spacing:9.098189px;}
.ls48{letter-spacing:10.145463px;}
.ls1d{letter-spacing:10.160915px;}
.ls12{letter-spacing:10.865464px;}
.ls6{letter-spacing:10.930918px;}
.ls47{letter-spacing:13.100915px;}
.ls36{letter-spacing:13.899376px;}
.ls68{letter-spacing:14.465467px;}
.ls11{letter-spacing:14.530921px;}
.ls18{letter-spacing:14.596376px;}
.ls3f{letter-spacing:17.410924px;}
.ls5f{letter-spacing:17.476378px;}
.ls4f{letter-spacing:17.528915px;}
.ls1b{letter-spacing:17.534915px;}
.ls3c{letter-spacing:18.110610px;}
.ls17{letter-spacing:18.130924px;}
.ls5c{letter-spacing:18.193411px;}
.ls9{letter-spacing:18.196379px;}
.ls6f{letter-spacing:18.327288px;}
.ls26{letter-spacing:19.248621px;}
.ls3b{letter-spacing:20.428878px;}
.ls57{letter-spacing:20.434878px;}
.ls13{letter-spacing:20.552744px;}
.ls4a{letter-spacing:20.989525px;}
.ls59{letter-spacing:21.062915px;}
.ls16{letter-spacing:21.076381px;}
.ls67{letter-spacing:21.167971px;}
.ls63{letter-spacing:21.172059px;}
.ls6c{letter-spacing:21.338200px;}
.ls56{letter-spacing:21.532524px;}
.ls1{letter-spacing:21.796382px;}
.ls0{letter-spacing:21.861836px;}
.ls71{letter-spacing:21.927291px;}
.ls45{letter-spacing:22.254564px;}
.ls49{letter-spacing:22.527962px;}
.ls46{letter-spacing:22.533962px;}
.ls2d{letter-spacing:22.909110px;}
.ls10{letter-spacing:23.052587px;}
.ls24{letter-spacing:24.152747px;}
.ls2c{letter-spacing:24.218202px;}
.ls53{letter-spacing:24.704915px;}
.ls3{letter-spacing:24.783369px;}
.ls23{letter-spacing:24.799051px;}
.lsa{letter-spacing:24.800915px;}
.ls69{letter-spacing:24.803971px;}
.ls20{letter-spacing:24.806915px;}
.lsb{letter-spacing:25.592749px;}
.ls27{letter-spacing:26.560677px;}
.ls1e{letter-spacing:26.566677px;}
.ls8{letter-spacing:26.694587px;}
.ls5b{letter-spacing:27.098204px;}
.ls4b{letter-spacing:28.261525px;}
.ls50{letter-spacing:28.267525px;}
.ls51{letter-spacing:28.817412px;}
.lsc{letter-spacing:28.865479px;}
.lsd{letter-spacing:29.192752px;}
.ls14{letter-spacing:29.258206px;}
.ls77{letter-spacing:29.389115px;}
.ls5a{letter-spacing:30.240025px;}
.ls54{letter-spacing:30.269412px;}
.ls2b{letter-spacing:30.305480px;}
.ls28{letter-spacing:30.370934px;}
.ls29{letter-spacing:32.727300px;}
.ls4d{letter-spacing:42.473412px;}
.ls64{letter-spacing:56.459412px;}
.ls3d{letter-spacing:141.840118px;}
.ls76{letter-spacing:142.953478px;}
.ls4c{letter-spacing:173.465412px;}
.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;}
}
.ws16{word-spacing:-47.324343px;}
.ws13{word-spacing:-42.637126px;}
.ws76{word-spacing:-36.379667px;}
.ws2e{word-spacing:-33.453846px;}
.ws15{word-spacing:-33.211407px;}
.ws47{word-spacing:-32.727300px;}
.ws35{word-spacing:-31.771663px;}
.ws27{word-spacing:-31.706208px;}
.ws4b{word-spacing:-24.563024px;}
.ws52{word-spacing:-24.559724px;}
.ws4a{word-spacing:-24.557024px;}
.ws17{word-spacing:-24.506202px;}
.ws25{word-spacing:-24.440748px;}
.ws60{word-spacing:-24.375293px;}
.ws24{word-spacing:-22.149837px;}
.ws33{word-spacing:-21.888018px;}
.ws41{word-spacing:-21.825389px;}
.ws53{word-spacing:-21.626200px;}
.ws4c{word-spacing:-21.560745px;}
.ws37{word-spacing:-19.315760px;}
.ws14{word-spacing:-18.183288px;}
.ws66{word-spacing:-16.625468px;}
.wse{word-spacing:-16.139475px;}
.ws63{word-spacing:-16.036377px;}
.ws7e{word-spacing:-15.905468px;}
.ws6f{word-spacing:-15.578195px;}
.ws79{word-spacing:-15.316376px;}
.ws54{word-spacing:-14.942490px;}
.ws7f{word-spacing:-14.465467px;}
.ws51{word-spacing:-14.269103px;}
.ws50{word-spacing:-14.203648px;}
.ws48{word-spacing:-13.810921px;}
.ws49{word-spacing:-13.745466px;}
.ws80{word-spacing:-13.614557px;}
.ws23{word-spacing:-13.449600px;}
.wsc{word-spacing:-13.449510px;}
.ws2a{word-spacing:-13.418193px;}
.ws73{word-spacing:-13.352738px;}
.ws74{word-spacing:-13.287284px;}
.ws4e{word-spacing:-12.698192px;}
.ws1c{word-spacing:-12.174556px;}
.ws1d{word-spacing:-12.109101px;}
.ws40{word-spacing:-12.043646px;}
.ws82{word-spacing:-11.978192px;}
.ws78{word-spacing:-11.520010px;}
.ws39{word-spacing:-11.389100px;}
.ws20{word-spacing:-11.323646px;}
.ws5f{word-spacing:-11.258191px;}
.ws43{word-spacing:-11.192737px;}
.ws83{word-spacing:-11.127282px;}
.ws5a{word-spacing:-11.061827px;}
.ws56{word-spacing:-10.996373px;}
.ws10{word-spacing:-10.930918px;}
.ws12{word-spacing:-10.865464px;}
.ws3b{word-spacing:-10.800009px;}
.ws29{word-spacing:-10.734554px;}
.ws3e{word-spacing:-10.603645px;}
.ws3d{word-spacing:-10.538191px;}
.ws3a{word-spacing:-10.479281px;}
.ws4d{word-spacing:-10.472736px;}
.ws2b{word-spacing:-10.407281px;}
.ws8{word-spacing:-10.281403px;}
.wsa{word-spacing:-10.221628px;}
.ws86{word-spacing:-10.217463px;}
.ws3{word-spacing:-10.161852px;}
.ws5c{word-spacing:-10.152008px;}
.ws5d{word-spacing:-10.145463px;}
.ws5b{word-spacing:-10.086554px;}
.ws7b{word-spacing:-10.080008px;}
.ws11{word-spacing:-10.021099px;}
.ws6{word-spacing:-9.982525px;}
.ws67{word-spacing:-9.883645px;}
.wsb{word-spacing:-9.862974px;}
.ws31{word-spacing:-9.818190px;}
.ws4{word-spacing:-9.803198px;}
.ws7{word-spacing:-9.683647px;}
.ws5{word-spacing:-9.564096px;}
.ws2c{word-spacing:-9.562917px;}
.ws6d{word-spacing:-9.556372px;}
.wsd{word-spacing:-9.504320px;}
.ws32{word-spacing:-9.490917px;}
.ws70{word-spacing:-9.229099px;}
.ws71{word-spacing:-9.163644px;}
.ws30{word-spacing:-9.032735px;}
.ws44{word-spacing:-8.705462px;}
.ws21{word-spacing:-8.640007px;}
.ws62{word-spacing:-8.443643px;}
.ws46{word-spacing:-8.378189px;}
.ws9{word-spacing:-8.368584px;}
.ws1e{word-spacing:-8.319280px;}
.ws84{word-spacing:-8.247280px;}
.ws34{word-spacing:-7.985461px;}
.ws5e{word-spacing:-7.920007px;}
.ws6e{word-spacing:-7.789097px;}
.ws85{word-spacing:-7.664734px;}
.ws6b{word-spacing:-7.527279px;}
.ws81{word-spacing:-7.461824px;}
.ws2f{word-spacing:-7.337461px;}
.ws3c{word-spacing:-7.265461px;}
.ws2d{word-spacing:-6.741824px;}
.ws72{word-spacing:-6.218187px;}
.ws45{word-spacing:-6.087278px;}
.ws65{word-spacing:-6.021823px;}
.ws1f{word-spacing:-5.890914px;}
.ws59{word-spacing:-5.629096px;}
.wsf{word-spacing:-5.301823px;}
.ws64{word-spacing:-5.105459px;}
.ws7a{word-spacing:-4.647277px;}
.ws87{word-spacing:-3.992731px;}
.ws7c{word-spacing:-3.730912px;}
.ws57{word-spacing:-3.665458px;}
.ws55{word-spacing:-3.652367px;}
.ws3f{word-spacing:-3.600003px;}
.ws38{word-spacing:-3.338185px;}
.ws68{word-spacing:-3.272730px;}
.ws42{word-spacing:-2.487275px;}
.ws6c{word-spacing:-1.047274px;}
.ws1a{word-spacing:-0.052364px;}
.ws6a{word-spacing:-0.047821px;}
.ws1b{word-spacing:-0.025330px;}
.ws36{word-spacing:-0.018146px;}
.ws22{word-spacing:0.000000px;}
.ws58{word-spacing:0.000203px;}
.ws28{word-spacing:0.001939px;}
.ws18{word-spacing:0.013091px;}
.ws4f{word-spacing:0.340364px;}
.ws61{word-spacing:6.952171px;}
.ws1{word-spacing:23.312640px;}
.ws2{word-spacing:23.384371px;}
.ws0{word-spacing:31.091012px;}
.ws19{word-spacing:32.727300px;}
.ws69{word-spacing:33.838008px;}
.ws77{word-spacing:47.271312px;}
.ws7d{word-spacing:48.418425px;}
.ws26{word-spacing:99.202992px;}
.ws75{word-spacing:217.338166px;}
._1{margin-left:-5.881958px;}
._12{margin-left:-4.852596px;}
._2{margin-left:-3.801754px;}
._0{margin-left:-1.936742px;}
._3{width:1.936742px;}
._11{width:2.975060px;}
._18{width:4.589412px;}
._8{width:5.787119px;}
._1d{width:7.276920px;}
._1e{width:17.910373px;}
._e{width:20.487290px;}
._16{width:23.335010px;}
._14{width:24.666539px;}
._6{width:25.667694px;}
._4{width:26.779469px;}
._5{width:27.867424px;}
._a{width:29.192752px;}
._10{width:32.727300px;}
._b{width:34.447060px;}
._13{width:35.514952px;}
._c{width:36.954953px;}
._1c{width:38.749123px;}
._1a{width:40.070011px;}
._15{width:43.410771px;}
._1f{width:53.029889px;}
._17{width:56.418387px;}
._9{width:65.454600px;}
._d{width:80.697600px;}
._19{width:95.047462px;}
._7{width:96.836850px;}
._f{width:141.840118px;}
._20{width:274.818599px;}
._1b{width:520.838015px;}
.fc1{color:rgb(236,0,140);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y26{bottom:63.168000px;}
.ya3{bottom:108.000000px;}
.y4e{bottom:110.680500px;}
.yf0{bottom:121.603500px;}
.y25{bottom:124.050000px;}
.ya2{bottom:128.323500px;}
.y4d{bottom:131.004000px;}
.yef{bottom:141.927000px;}
.y24{bottom:144.373500px;}
.ya1{bottom:148.647000px;}
.y4c{bottom:151.327500px;}
.y133{bottom:161.433000px;}
.ycb{bottom:161.950500px;}
.yee{bottom:162.250500px;}
.y9f{bottom:172.855500px;}
.y9e{bottom:174.891000px;}
.y23{bottom:180.901500px;}
.yed{bottom:182.575500px;}
.y4b{bottom:185.101500px;}
.y9d{bottom:186.115500px;}
.yca{bottom:195.576000px;}
.ya0{bottom:197.185500px;}
.y132{bottom:197.962500px;}
.y72{bottom:201.685500px;}
.y4a{bottom:205.425000px;}
.y9c{bottom:208.984500px;}
.y110{bottom:212.421000px;}
.yec{bottom:216.348000px;}
.y71{bottom:222.009000px;}
.y22{bottom:232.459500px;}
.y10f{bottom:232.746000px;}
.yc9{bottom:233.392500px;}
.y9b{bottom:236.779500px;}
.y49{bottom:239.199000px;}
.y70{bottom:242.332500px;}
.y131{bottom:249.207000px;}
.y9a{bottom:250.039500px;}
.yeb{bottom:250.122000px;}
.y21{bottom:252.784500px;}
.yc8{bottom:253.716000px;}
.y48{bottom:259.522500px;}
.y130{bottom:269.530500px;}
.yea{bottom:270.445500px;}
.y10e{bottom:271.002000px;}
.y20{bottom:273.108000px;}
.yc6{bottom:274.039500px;}
.y6f{bottom:278.862000px;}
.yc7{bottom:279.978000px;}
.y99{bottom:289.609500px;}
.y12f{bottom:289.854000px;}
.y10d{bottom:291.325500px;}
.y1f{bottom:293.431500px;}
.y47{bottom:297.778500px;}
.ye9{bottom:304.219500px;}
.y98{bottom:309.933000px;}
.y12e{bottom:310.177500px;}
.yc5{bottom:310.198500px;}
.y1e{bottom:313.755000px;}
.y46{bottom:318.103500px;}
.yc4{bottom:321.423000px;}
.y10c{bottom:325.099500px;}
.y6e{bottom:330.418500px;}
.y12d{bottom:330.502500px;}
.ye8{bottom:337.992000px;}
.y96{bottom:341.572500px;}
.y10b{bottom:345.423000px;}
.y6d{bottom:350.743500px;}
.y12c{bottom:350.826000px;}
.y95{bottom:352.797000px;}
.y1d{bottom:357.222000px;}
.y45{bottom:361.569000px;}
.yc3{bottom:361.653000px;}
.y97{bottom:363.868500px;}
.y6c{bottom:371.067000px;}
.y10a{bottom:379.197000px;}
.ye7{bottom:380.458500px;}
.ye6{bottom:384.594000px;}
.y12b{bottom:387.091500px;}
.y6b{bottom:391.390500px;}
.y94{bottom:392.631000px;}
.yc1{bottom:395.442000px;}
.y1c{bottom:399.031500px;}
.ye5{bottom:401.154000px;}
.y44{bottom:403.378500px;}
.yc0{bottom:406.666500px;}
.y12a{bottom:407.416500px;}
.y109{bottom:412.969500px;}
.yc2{bottom:417.738000px;}
.y92{bottom:417.874500px;}
.ye4{bottom:422.268000px;}
.y43{bottom:423.703500px;}
.y6a{bottom:425.164500px;}
.y129{bottom:427.740000px;}
.y93{bottom:440.169000px;}
.y1b{bottom:441.589500px;}
.y42{bottom:444.027000px;}
.y69{bottom:445.488000px;}
.ye3{bottom:449.232000px;}
.ybf{bottom:450.684000px;}
.y108{bottom:451.225500px;}
.y91{bottom:452.455500px;}
.y128{bottom:460.849500px;}
.y1a{bottom:462.285000px;}
.y41{bottom:464.350500px;}
.ye2{bottom:468.553500px;}
.ybe{bottom:475.683000px;}
.y68{bottom:479.260500px;}
.y127{bottom:481.173000px;}
.y107{bottom:481.263000px;}
.y90{bottom:483.096000px;}
.y19{bottom:484.308000px;}
.y40{bottom:484.674000px;}
.ye1{bottom:490.743000px;}
.ybb{bottom:494.340000px;}
.y67{bottom:499.585500px;}
.y126{bottom:501.496500px;}
.y106{bottom:501.588000px;}
.y18{bottom:504.631500px;}
.y3f{bottom:504.997500px;}
.y8f{bottom:505.390500px;}
.ybd{bottom:508.891500px;}
.ybc{bottom:513.375000px;}
.ye0{bottom:521.635500px;}
.y125{bottom:521.821500px;}
.y105{bottom:521.911500px;}
.yba{bottom:524.694000px;}
.y17{bottom:524.955000px;}
.y3e{bottom:525.322500px;}
.y66{bottom:533.358000px;}
.y8e{bottom:536.121000px;}
.yb9{bottom:545.017500px;}
.y3d{bottom:545.646000px;}
.y124{bottom:554.931000px;}
.y104{bottom:558.673500px;}
.y16{bottom:561.483000px;}
.y8c{bottom:563.916000px;}
.ydf{bottom:565.453500px;}
.y8b{bottom:565.951500px;}
.y3c{bottom:565.969500px;}
.y65{bottom:567.132000px;}
.y123{bottom:575.254500px;}
.yb8{bottom:575.908500px;}
.y8a{bottom:577.176000px;}
.yde{bottom:585.777000px;}
.y64{bottom:587.455500px;}
.y8d{bottom:588.246000px;}
.y103{bottom:595.435500px;}
.y3b{bottom:596.862000px;}
.ydd{bottom:606.102000px;}
.y122{bottom:608.364000px;}
.y15{bottom:613.041000px;}
.y63{bottom:617.493000px;}
.y89{bottom:618.978000px;}
.yb7{bottom:619.659000px;}
.y102{bottom:626.328000px;}
.y121{bottom:628.689000px;}
.y14{bottom:630.973500px;}
.y62{bottom:637.816500px;}
.yb6{bottom:639.982500px;}
.y3a{bottom:640.680000px;}
.ydc{bottom:644.358000px;}
.y13{bottom:648.907500px;}
.y120{bottom:649.012500px;}
.y88{bottom:649.869000px;}
.yb5{bottom:660.306000px;}
.y39{bottom:661.003500px;}
.ydb{bottom:664.681500px;}
.y12{bottom:666.840000px;}
.y61{bottom:667.854000px;}
.y101{bottom:670.146000px;}
.y11f{bottom:682.122000px;}
.y11{bottom:684.772500px;}
.y60{bottom:688.177500px;}
.y100{bottom:690.469500px;}
.y87{bottom:693.271500px;}
.yb4{bottom:696.834000px;}
.yda{bottom:698.455500px;}
.y38{bottom:699.261000px;}
.y11e{bottom:702.445500px;}
.y10{bottom:702.705000px;}
.y5f{bottom:708.501000px;}
.yff{bottom:710.794500px;}
.y86{bottom:713.595000px;}
.yd9{bottom:718.779000px;}
.yf{bottom:720.637500px;}
.y11d{bottom:722.770500px;}
.y37{bottom:733.033500px;}
.y84{bottom:733.918500px;}
.ye{bottom:738.570000px;}
.y5d{bottom:739.953000px;}
.y5c{bottom:741.988500px;}
.y85{bottom:746.311500px;}
.yb3{bottom:748.323000px;}
.yfe{bottom:749.050500px;}
.y5b{bottom:753.213000px;}
.y82{bottom:754.242000px;}
.yd{bottom:756.504000px;}
.yd8{bottom:757.035000px;}
.y11c{bottom:759.036000px;}
.y5e{bottom:764.283000px;}
.y83{bottom:766.635000px;}
.y36{bottom:766.807500px;}
.yb2{bottom:768.646500px;}
.yfd{bottom:769.374000px;}
.yc{bottom:774.436500px;}
.yd7{bottom:777.358500px;}
.y11b{bottom:779.359500px;}
.yb0{bottom:788.970000px;}
.y81{bottom:789.843000px;}
.yb{bottom:792.369000px;}
.yd6{bottom:797.683500px;}
.y5a{bottom:798.579000px;}
.yb1{bottom:801.363000px;}
.yfc{bottom:803.148000px;}
.y35{bottom:805.063500px;}
.yaf{bottom:809.293500px;}
.y80{bottom:810.166500px;}
.ya{bottom:810.301500px;}
.y11a{bottom:815.887500px;}
.yd5{bottom:818.007000px;}
.y59{bottom:818.904000px;}
.yfb{bottom:823.471500px;}
.y34{bottom:825.387000px;}
.y9{bottom:828.234000px;}
.yae{bottom:829.618500px;}
.y8{bottom:846.166500px;}
.y7e{bottom:848.359500px;}
.yd4{bottom:848.898000px;}
.y58{bottom:855.666000px;}
.y33{bottom:856.839000px;}
.yfa{bottom:857.244000px;}
.y7f{bottom:859.584000px;}
.y7{bottom:864.100500px;}
.y119{bottom:867.133500px;}
.y32{bottom:870.099000px;}
.y7d{bottom:870.654000px;}
.yad{bottom:874.059000px;}
.y6{bottom:882.033000px;}
.y118{bottom:887.457000px;}
.y57{bottom:892.428000px;}
.yd3{bottom:892.717500px;}
.yac{bottom:894.754500px;}
.yf9{bottom:895.501500px;}
.y7c{bottom:896.235000px;}
.y117{bottom:907.780500px;}
.y5{bottom:909.306000px;}
.y56{bottom:912.751500px;}
.yd2{bottom:913.041000px;}
.y31{bottom:913.233000px;}
.yab{bottom:915.427500px;}
.yf8{bottom:915.825000px;}
.y116{bottom:928.104000px;}
.y7b{bottom:929.122500px;}
.yd1{bottom:933.364500px;}
.y30{bottom:933.558000px;}
.yaa{bottom:935.751000px;}
.yf7{bottom:936.148500px;}
.y55{bottom:943.644000px;}
.y7a{bottom:952.729500px;}
.y79{bottom:963.954000px;}
.y115{bottom:964.371000px;}
.y2e{bottom:965.008500px;}
.yf6{bottom:966.186000px;}
.ya9{bottom:966.643500px;}
.y4{bottom:969.717000px;}
.yd0{bottom:971.622000px;}
.y2f{bottom:978.268500px;}
.y114{bottom:984.694500px;}
.yf5{bottom:986.509500px;}
.y78{bottom:986.823000px;}
.y54{bottom:987.462000px;}
.ycf{bottom:991.945500px;}
.y2d{bottom:998.964000px;}
.y53{bottom:1005.331500px;}
.y3{bottom:1006.404000px;}
.yf4{bottom:1006.833000px;}
.y52{bottom:1007.785500px;}
.ya8{bottom:1010.392500px;}
.y113{bottom:1017.804000px;}
.y2c{bottom:1020.493500px;}
.y77{bottom:1022.424000px;}
.yce{bottom:1025.719500px;}
.ya7{bottom:1030.716000px;}
.yf3{bottom:1037.725500px;}
.y112{bottom:1038.129000px;}
.y51{bottom:1046.043000px;}
.y75{bottom:1047.937500px;}
.y2{bottom:1051.870500px;}
.y2a{bottom:1052.881500px;}
.y74{bottom:1059.162000px;}
.y29{bottom:1064.106000px;}
.ya6{bottom:1064.122500px;}
.y50{bottom:1066.366500px;}
.y76{bottom:1070.232000px;}
.y111{bottom:1071.238500px;}
.y1{bottom:1072.792500px;}
.y2b{bottom:1075.176000px;}
.ycd{bottom:1079.815500px;}
.yf2{bottom:1081.545000px;}
.y134{bottom:1084.299000px;}
.ya5{bottom:1084.446000px;}
.y73{bottom:1087.180500px;}
.ycc{bottom:1100.139000px;}
.y4f{bottom:1100.140500px;}
.yf1{bottom:1101.868500px;}
.y28{bottom:1107.504000px;}
.ya4{bottom:1118.073000px;}
.y27{bottom:1138.396500px;}
.hd{height:35.865450px;}
.h4{height:41.723369px;}
.h5{height:44.831700px;}
.he{height:46.080038px;}
.h8{height:46.146763px;}
.h7{height:49.090950px;}
.ha{height:50.211840px;}
.h3{height:51.216077px;}
.hf{height:59.613450px;}
.h11{height:59.619450px;}
.h6{height:60.254040px;}
.h15{height:61.221729px;}
.h10{height:62.889450px;}
.h1a{height:65.632950px;}
.h1b{height:65.868763px;}
.h2{height:73.027727px;}
.hb{height:93.370950px;}
.h14{height:93.376950px;}
.hc{height:93.988950px;}
.h17{height:93.994950px;}
.h18{height:95.718763px;}
.h19{height:104.352763px;}
.h9{height:128.928763px;}
.h13{height:138.268950px;}
.h12{height:173.826763px;}
.h16{height:173.832763px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:106.929000px;}
.x8{left:108.000000px;}
.x2a{left:122.220000px;}
.x3e{left:124.299000px;}
.x1c{left:127.999500px;}
.xa0{left:130.393500px;}
.x9{left:133.404000px;}
.x54{left:136.027500px;}
.x3f{left:139.110000px;}
.x37{left:146.994000px;}
.x7{left:148.909500px;}
.x55{left:150.441000px;}
.xaa{left:153.193500px;}
.x72{left:164.637000px;}
.x6{left:171.325500px;}
.x8e{left:173.178000px;}
.xab{left:182.655000px;}
.xe{left:188.287500px;}
.xf{left:201.223500px;}
.x10{left:207.460500px;}
.x11{left:217.233000px;}
.x5f{left:222.994500px;}
.x31{left:230.041500px;}
.x60{left:232.767000px;}
.x44{left:237.339000px;}
.x61{left:239.010000px;}
.x38{left:245.538000px;}
.x40{left:249.651000px;}
.x1{left:251.841000px;}
.x62{left:253.719000px;}
.x45{left:255.123000px;}
.x39{left:261.378000px;}
.x3a{left:267.615000px;}
.xa3{left:271.155000px;}
.x8b{left:272.673000px;}
.xad{left:275.829000px;}
.x2b{left:277.338000px;}
.xc{left:280.153500px;}
.x2{left:283.357500px;}
.x32{left:285.495000px;}
.x19{left:286.744500px;}
.x85{left:287.980500px;}
.xa4{left:289.951500px;}
.x16{left:291.948000px;}
.x3b{left:294.598500px;}
.x58{left:299.035500px;}
.x17{left:300.250500px;}
.xa{left:304.168500px;}
.x7b{left:306.477000px;}
.x94{left:308.874000px;}
.x13{left:311.014500px;}
.x79{left:315.144000px;}
.x46{left:316.233000px;}
.xa2{left:317.751000px;}
.x50{left:319.909500px;}
.xb{left:324.579000px;}
.x18{left:326.307000px;}
.x78{left:328.171500px;}
.x93{left:332.113500px;}
.x4a{left:334.986000px;}
.xa1{left:337.014000px;}
.x99{left:342.592500px;}
.x75{left:344.973000px;}
.x73{left:353.437500px;}
.x4f{left:356.623500px;}
.x9f{left:358.896000px;}
.x43{left:360.408000px;}
.x9b{left:362.958000px;}
.x7c{left:366.121500px;}
.x9d{left:369.181500px;}
.x76{left:373.348500px;}
.x3{left:375.274500px;}
.x22{left:379.398000px;}
.x9e{left:381.000000px;}
.x7e{left:382.350000px;}
.x74{left:384.750000px;}
.x4{left:387.661500px;}
.x15{left:390.894000px;}
.x5d{left:393.796500px;}
.x23{left:395.211000px;}
.x9c{left:396.315000px;}
.x5c{left:401.572500px;}
.x77{left:403.647000px;}
.x84{left:404.785500px;}
.x5a{left:408.928500px;}
.x14{left:412.669500px;}
.x5{left:413.812500px;}
.x59{left:415.033500px;}
.x4b{left:419.041500px;}
.x91{left:421.494000px;}
.x7d{left:423.442500px;}
.x26{left:426.558000px;}
.x33{left:430.566000px;}
.x82{left:434.556000px;}
.x52{left:438.258000px;}
.x9a{left:441.276000px;}
.x12{left:442.366500px;}
.x34{left:443.851500px;}
.x27{left:448.117500px;}
.x83{left:450.784500px;}
.x92{left:453.978000px;}
.x53{left:456.429000px;}
.x87{left:458.575500px;}
.x5e{left:460.297500px;}
.x1a{left:464.940000px;}
.x66{left:466.297500px;}
.x28{left:469.212000px;}
.x4c{left:471.324000px;}
.x5b{left:480.220500px;}
.x97{left:481.308000px;}
.x7a{left:482.428500px;}
.xd{left:485.277000px;}
.x86{left:486.343500px;}
.x2c{left:489.286500px;}
.x1b{left:490.998000px;}
.x98{left:495.025500px;}
.x7f{left:496.732500px;}
.x4e{left:499.174500px;}
.x4d{left:502.134000px;}
.x1f{left:508.291500px;}
.x81{left:512.961000px;}
.x67{left:518.227500px;}
.x20{left:524.686500px;}
.xa5{left:526.642500px;}
.x88{left:527.898000px;}
.x95{left:529.090500px;}
.x96{left:531.888000px;}
.x89{left:534.388500px;}
.xa6{left:537.348000px;}
.x80{left:540.727500px;}
.x8a{left:543.741000px;}
.x68{left:546.027000px;}
.xa7{left:549.397500px;}
.x29{left:553.572000px;}
.xac{left:558.082500px;}
.x24{left:560.749500px;}
.x69{left:567.751500px;}
.xa8{left:570.993000px;}
.x25{left:572.698500px;}
.x6a{left:573.988500px;}
.xa9{left:583.788000px;}
.x56{left:593.113500px;}
.x47{left:597.076500px;}
.x8f{left:598.762500px;}
.x48{left:605.259000px;}
.x57{left:607.135500px;}
.x6b{left:617.575500px;}
.x6c{left:623.811000px;}
.x3c{left:629.625000px;}
.x6d{left:633.585000px;}
.x3d{left:635.533500px;}
.x63{left:636.993000px;}
.x6e{left:639.820500px;}
.x1d{left:645.103500px;}
.x64{left:646.374000px;}
.x6f{left:649.173000px;}
.x70{left:658.137000px;}
.x1e{left:662.371500px;}
.x49{left:670.599000px;}
.x71{left:680.907000px;}
.x90{left:691.794000px;}
.x2d{left:695.073000px;}
.x2e{left:706.432500px;}
.x8c{left:709.927500px;}
.xae{left:714.171000px;}
.x41{left:717.129000px;}
.x35{left:722.569500px;}
.x8d{left:726.022500px;}
.x42{left:731.092500px;}
.x36{left:733.917000px;}
.x2f{left:743.382000px;}
.x30{left:751.992000px;}
.x65{left:759.277500px;}
.x51{left:774.208500px;}
@media print{
.v12{vertical-align:-126.640000pt;}
.v2{vertical-align:-120.736000pt;}
.v17{vertical-align:-54.736000pt;}
.v13{vertical-align:-53.056000pt;}
.v4{vertical-align:-47.152000pt;}
.v10{vertical-align:-44.064000pt;}
.v7{vertical-align:-16.821333pt;}
.vf{vertical-align:-14.629333pt;}
.v1{vertical-align:-8.725333pt;}
.ve{vertical-align:-7.242667pt;}
.v14{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:14.704000pt;}
.v6{vertical-align:16.810667pt;}
.v9{vertical-align:21.109333pt;}
.vb{vertical-align:24.021333pt;}
.v5{vertical-align:39.360000pt;}
.va{vertical-align:44.304000pt;}
.v15{vertical-align:51.738667pt;}
.v8{vertical-align:56.757333pt;}
.v3{vertical-align:73.584000pt;}
.v11{vertical-align:79.269333pt;}
.vd{vertical-align:96.666667pt;}
.vc{vertical-align:113.493333pt;}
.ls15{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.000749pt;}
.ls41{letter-spacing:0.000942pt;}
.ls25{letter-spacing:0.001200pt;}
.ls44{letter-spacing:0.001432pt;}
.ls1f{letter-spacing:0.001908pt;}
.ls1a{letter-spacing:0.002397pt;}
.ls22{letter-spacing:0.002405pt;}
.ls4{letter-spacing:0.003854pt;}
.ls37{letter-spacing:0.003856pt;}
.ls7{letter-spacing:0.007342pt;}
.ls66{letter-spacing:0.008449pt;}
.ls31{letter-spacing:0.008970pt;}
.lsf{letter-spacing:0.010930pt;}
.ls35{letter-spacing:0.011017pt;}
.ls5e{letter-spacing:0.015396pt;}
.ls5d{letter-spacing:0.016732pt;}
.ls55{letter-spacing:0.017537pt;}
.ls38{letter-spacing:0.017765pt;}
.ls52{letter-spacing:0.023131pt;}
.ls43{letter-spacing:0.025591pt;}
.ls62{letter-spacing:0.026035pt;}
.ls4e{letter-spacing:0.028464pt;}
.ls40{letter-spacing:0.030924pt;}
.ls60{letter-spacing:1.147694pt;}
.ls2e{letter-spacing:1.657781pt;}
.ls65{letter-spacing:1.785302pt;}
.ls2a{letter-spacing:2.036365pt;}
.ls1c{letter-spacing:2.097867pt;}
.ls58{letter-spacing:2.103200pt;}
.ls6e{letter-spacing:2.507925pt;}
.ls3a{letter-spacing:2.560002pt;}
.ls74{letter-spacing:2.654270pt;}
.ls39{letter-spacing:2.655321pt;}
.ls6b{letter-spacing:2.656092pt;}
.ls3e{letter-spacing:2.658591pt;}
.ls2f{letter-spacing:2.659001pt;}
.ls72{letter-spacing:2.659603pt;}
.ls75{letter-spacing:2.676366pt;}
.ls6d{letter-spacing:3.319489pt;}
.ls61{letter-spacing:3.791684pt;}
.ls21{letter-spacing:4.176552pt;}
.ls19{letter-spacing:4.181885pt;}
.ls34{letter-spacing:4.189094pt;}
.ls32{letter-spacing:4.319804pt;}
.ls42{letter-spacing:5.317806pt;}
.ls70{letter-spacing:5.342931pt;}
.ls73{letter-spacing:6.225460pt;}
.ls6a{letter-spacing:6.260825pt;}
.lse{letter-spacing:6.283642pt;}
.ls5{letter-spacing:7.563189pt;}
.ls2{letter-spacing:7.568522pt;}
.ls30{letter-spacing:8.087279pt;}
.ls48{letter-spacing:9.018189pt;}
.ls1d{letter-spacing:9.031925pt;}
.ls12{letter-spacing:9.658190pt;}
.ls6{letter-spacing:9.716372pt;}
.ls47{letter-spacing:11.645258pt;}
.ls36{letter-spacing:12.355001pt;}
.ls68{letter-spacing:12.858193pt;}
.ls11{letter-spacing:12.916374pt;}
.ls18{letter-spacing:12.974556pt;}
.ls3f{letter-spacing:15.476377pt;}
.ls5f{letter-spacing:15.534558pt;}
.ls4f{letter-spacing:15.581258pt;}
.ls1b{letter-spacing:15.586591pt;}
.ls3c{letter-spacing:16.098320pt;}
.ls17{letter-spacing:16.116377pt;}
.ls5c{letter-spacing:16.171921pt;}
.ls9{letter-spacing:16.174559pt;}
.ls6f{letter-spacing:16.290923pt;}
.ls26{letter-spacing:17.109885pt;}
.ls3b{letter-spacing:18.159003pt;}
.ls57{letter-spacing:18.164336pt;}
.ls13{letter-spacing:18.269106pt;}
.ls4a{letter-spacing:18.657355pt;}
.ls59{letter-spacing:18.722591pt;}
.ls16{letter-spacing:18.734561pt;}
.ls67{letter-spacing:18.815975pt;}
.ls63{letter-spacing:18.819608pt;}
.ls6c{letter-spacing:18.967289pt;}
.ls56{letter-spacing:19.140021pt;}
.ls1{letter-spacing:19.374562pt;}
.ls0{letter-spacing:19.432743pt;}
.ls71{letter-spacing:19.490925pt;}
.ls45{letter-spacing:19.781835pt;}
.ls49{letter-spacing:20.024855pt;}
.ls46{letter-spacing:20.030188pt;}
.ls2d{letter-spacing:20.363653pt;}
.ls10{letter-spacing:20.491189pt;}
.ls24{letter-spacing:21.469109pt;}
.ls2c{letter-spacing:21.527291pt;}
.ls53{letter-spacing:21.959925pt;}
.ls3{letter-spacing:22.029661pt;}
.ls23{letter-spacing:22.043601pt;}
.lsa{letter-spacing:22.045258pt;}
.ls69{letter-spacing:22.047975pt;}
.ls20{letter-spacing:22.050591pt;}
.lsb{letter-spacing:22.749110pt;}
.ls27{letter-spacing:23.609490pt;}
.ls1e{letter-spacing:23.614824pt;}
.ls8{letter-spacing:23.728522pt;}
.ls5b{letter-spacing:24.087293pt;}
.ls4b{letter-spacing:25.121355pt;}
.ls50{letter-spacing:25.126689pt;}
.ls51{letter-spacing:25.615477pt;}
.lsc{letter-spacing:25.658203pt;}
.lsd{letter-spacing:25.949113pt;}
.ls14{letter-spacing:26.007294pt;}
.ls77{letter-spacing:26.123658pt;}
.ls5a{letter-spacing:26.880022pt;}
.ls54{letter-spacing:26.906144pt;}
.ls2b{letter-spacing:26.938204pt;}
.ls28{letter-spacing:26.996386pt;}
.ls29{letter-spacing:29.090933pt;}
.ls4d{letter-spacing:37.754144pt;}
.ls64{letter-spacing:50.186144pt;}
.ls3d{letter-spacing:126.080105pt;}
.ls76{letter-spacing:127.069759pt;}
.ls4c{letter-spacing:154.191477pt;}
.ws16{word-spacing:-42.066082pt;}
.ws13{word-spacing:-37.899668pt;}
.ws76{word-spacing:-32.337481pt;}
.ws2e{word-spacing:-29.736752pt;}
.ws15{word-spacing:-29.521250pt;}
.ws47{word-spacing:-29.090933pt;}
.ws35{word-spacing:-28.241478pt;}
.ws27{word-spacing:-28.183296pt;}
.ws4b{word-spacing:-21.833799pt;}
.ws52{word-spacing:-21.830866pt;}
.ws4a{word-spacing:-21.828466pt;}
.ws17{word-spacing:-21.783291pt;}
.ws25{word-spacing:-21.725109pt;}
.ws60{word-spacing:-21.666927pt;}
.ws24{word-spacing:-19.688744pt;}
.ws33{word-spacing:-19.456016pt;}
.ws41{word-spacing:-19.400346pt;}
.ws53{word-spacing:-19.223289pt;}
.ws4c{word-spacing:-19.165107pt;}
.ws37{word-spacing:-17.169565pt;}
.ws14{word-spacing:-16.162923pt;}
.ws66{word-spacing:-14.778194pt;}
.wse{word-spacing:-14.346200pt;}
.ws63{word-spacing:-14.254557pt;}
.ws7e{word-spacing:-14.138194pt;}
.ws6f{word-spacing:-13.847284pt;}
.ws79{word-spacing:-13.614557pt;}
.ws54{word-spacing:-13.282213pt;}
.ws7f{word-spacing:-12.858193pt;}
.ws51{word-spacing:-12.683647pt;}
.ws50{word-spacing:-12.625465pt;}
.ws48{word-spacing:-12.276374pt;}
.ws49{word-spacing:-12.218192pt;}
.ws80{word-spacing:-12.101828pt;}
.ws23{word-spacing:-11.955200pt;}
.wsc{word-spacing:-11.955120pt;}
.ws2a{word-spacing:-11.927283pt;}
.ws73{word-spacing:-11.869101pt;}
.ws74{word-spacing:-11.810919pt;}
.ws4e{word-spacing:-11.287282pt;}
.ws1c{word-spacing:-10.821827pt;}
.ws1d{word-spacing:-10.763645pt;}
.ws40{word-spacing:-10.705463pt;}
.ws82{word-spacing:-10.647282pt;}
.ws78{word-spacing:-10.240009pt;}
.ws39{word-spacing:-10.123645pt;}
.ws20{word-spacing:-10.065463pt;}
.ws5f{word-spacing:-10.007281pt;}
.ws43{word-spacing:-9.949099pt;}
.ws83{word-spacing:-9.890917pt;}
.ws5a{word-spacing:-9.832735pt;}
.ws56{word-spacing:-9.774554pt;}
.ws10{word-spacing:-9.716372pt;}
.ws12{word-spacing:-9.658190pt;}
.ws3b{word-spacing:-9.600008pt;}
.ws29{word-spacing:-9.541826pt;}
.ws3e{word-spacing:-9.425462pt;}
.ws3d{word-spacing:-9.367281pt;}
.ws3a{word-spacing:-9.314917pt;}
.ws4d{word-spacing:-9.309099pt;}
.ws2b{word-spacing:-9.250917pt;}
.ws8{word-spacing:-9.139025pt;}
.wsa{word-spacing:-9.085891pt;}
.ws86{word-spacing:-9.082189pt;}
.ws3{word-spacing:-9.032757pt;}
.ws5c{word-spacing:-9.024008pt;}
.ws5d{word-spacing:-9.018189pt;}
.ws5b{word-spacing:-8.965826pt;}
.ws7b{word-spacing:-8.960007pt;}
.ws11{word-spacing:-8.907644pt;}
.ws6{word-spacing:-8.873356pt;}
.ws67{word-spacing:-8.785462pt;}
.wsb{word-spacing:-8.767088pt;}
.ws31{word-spacing:-8.727280pt;}
.ws4{word-spacing:-8.713954pt;}
.ws7{word-spacing:-8.607686pt;}
.ws5{word-spacing:-8.501419pt;}
.ws2c{word-spacing:-8.500371pt;}
.ws6d{word-spacing:-8.494553pt;}
.wsd{word-spacing:-8.448285pt;}
.ws32{word-spacing:-8.436371pt;}
.ws70{word-spacing:-8.203643pt;}
.ws71{word-spacing:-8.145461pt;}
.ws30{word-spacing:-8.029098pt;}
.ws44{word-spacing:-7.738188pt;}
.ws21{word-spacing:-7.680006pt;}
.ws62{word-spacing:-7.505461pt;}
.ws46{word-spacing:-7.447279pt;}
.ws9{word-spacing:-7.438741pt;}
.ws1e{word-spacing:-7.394915pt;}
.ws84{word-spacing:-7.330915pt;}
.ws34{word-spacing:-7.098188pt;}
.ws5e{word-spacing:-7.040006pt;}
.ws6e{word-spacing:-6.923642pt;}
.ws85{word-spacing:-6.813097pt;}
.ws6b{word-spacing:-6.690915pt;}
.ws81{word-spacing:-6.632733pt;}
.ws2f{word-spacing:-6.522187pt;}
.ws3c{word-spacing:-6.458187pt;}
.ws2d{word-spacing:-5.992732pt;}
.ws72{word-spacing:-5.527277pt;}
.ws45{word-spacing:-5.410914pt;}
.ws65{word-spacing:-5.352732pt;}
.ws1f{word-spacing:-5.236368pt;}
.ws59{word-spacing:-5.003641pt;}
.wsf{word-spacing:-4.712731pt;}
.ws64{word-spacing:-4.538186pt;}
.ws7a{word-spacing:-4.130913pt;}
.ws87{word-spacing:-3.549094pt;}
.ws7c{word-spacing:-3.316366pt;}
.ws57{word-spacing:-3.258185pt;}
.ws55{word-spacing:-3.246548pt;}
.ws3f{word-spacing:-3.200003pt;}
.ws38{word-spacing:-2.967275pt;}
.ws68{word-spacing:-2.909093pt;}
.ws42{word-spacing:-2.210911pt;}
.ws6c{word-spacing:-0.930910pt;}
.ws1a{word-spacing:-0.046545pt;}
.ws6a{word-spacing:-0.042507pt;}
.ws1b{word-spacing:-0.022516pt;}
.ws36{word-spacing:-0.016130pt;}
.ws22{word-spacing:0.000000pt;}
.ws58{word-spacing:0.000180pt;}
.ws28{word-spacing:0.001724pt;}
.ws18{word-spacing:0.011636pt;}
.ws4f{word-spacing:0.302546pt;}
.ws61{word-spacing:6.179708pt;}
.ws1{word-spacing:20.722347pt;}
.ws2{word-spacing:20.786108pt;}
.ws0{word-spacing:27.636455pt;}
.ws19{word-spacing:29.090933pt;}
.ws69{word-spacing:30.078230pt;}
.ws77{word-spacing:42.018944pt;}
.ws7d{word-spacing:43.038600pt;}
.ws26{word-spacing:88.180437pt;}
.ws75{word-spacing:193.189481pt;}
._1{margin-left:-5.228407pt;}
._12{margin-left:-4.313419pt;}
._2{margin-left:-3.379337pt;}
._0{margin-left:-1.721549pt;}
._3{width:1.721549pt;}
._11{width:2.644498pt;}
._18{width:4.079477pt;}
._8{width:5.144106pt;}
._1d{width:6.468373pt;}
._1e{width:15.920331pt;}
._e{width:18.210924pt;}
._16{width:20.742231pt;}
._14{width:21.925812pt;}
._6{width:22.815728pt;}
._4{width:23.803972pt;}
._5{width:24.771043pt;}
._a{width:25.949113pt;}
._10{width:29.090933pt;}
._b{width:30.619609pt;}
._13{width:31.568846pt;}
._c{width:32.848847pt;}
._1c{width:34.443665pt;}
._1a{width:35.617788pt;}
._15{width:38.587352pt;}
._1f{width:47.137679pt;}
._17{width:50.149678pt;}
._9{width:58.181867pt;}
._d{width:71.731200pt;}
._19{width:84.486633pt;}
._7{width:86.077200pt;}
._f{width:126.080105pt;}
._20{width:244.283199pt;}
._1b{width:462.967124pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:56.149333pt;}
.ya3{bottom:96.000000pt;}
.y4e{bottom:98.382667pt;}
.yf0{bottom:108.092000pt;}
.y25{bottom:110.266667pt;}
.ya2{bottom:114.065333pt;}
.y4d{bottom:116.448000pt;}
.yef{bottom:126.157333pt;}
.y24{bottom:128.332000pt;}
.ya1{bottom:132.130667pt;}
.y4c{bottom:134.513333pt;}
.y133{bottom:143.496000pt;}
.ycb{bottom:143.956000pt;}
.yee{bottom:144.222667pt;}
.y9f{bottom:153.649333pt;}
.y9e{bottom:155.458667pt;}
.y23{bottom:160.801333pt;}
.yed{bottom:162.289333pt;}
.y4b{bottom:164.534667pt;}
.y9d{bottom:165.436000pt;}
.yca{bottom:173.845333pt;}
.ya0{bottom:175.276000pt;}
.y132{bottom:175.966667pt;}
.y72{bottom:179.276000pt;}
.y4a{bottom:182.600000pt;}
.y9c{bottom:185.764000pt;}
.y110{bottom:188.818667pt;}
.yec{bottom:192.309333pt;}
.y71{bottom:197.341333pt;}
.y22{bottom:206.630667pt;}
.y10f{bottom:206.885333pt;}
.yc9{bottom:207.460000pt;}
.y9b{bottom:210.470667pt;}
.y49{bottom:212.621333pt;}
.y70{bottom:215.406667pt;}
.y131{bottom:221.517333pt;}
.y9a{bottom:222.257333pt;}
.yeb{bottom:222.330667pt;}
.y21{bottom:224.697333pt;}
.yc8{bottom:225.525333pt;}
.y48{bottom:230.686667pt;}
.y130{bottom:239.582667pt;}
.yea{bottom:240.396000pt;}
.y10e{bottom:240.890667pt;}
.y20{bottom:242.762667pt;}
.yc6{bottom:243.590667pt;}
.y6f{bottom:247.877333pt;}
.yc7{bottom:248.869333pt;}
.y99{bottom:257.430667pt;}
.y12f{bottom:257.648000pt;}
.y10d{bottom:258.956000pt;}
.y1f{bottom:260.828000pt;}
.y47{bottom:264.692000pt;}
.ye9{bottom:270.417333pt;}
.y98{bottom:275.496000pt;}
.y12e{bottom:275.713333pt;}
.yc5{bottom:275.732000pt;}
.y1e{bottom:278.893333pt;}
.y46{bottom:282.758667pt;}
.yc4{bottom:285.709333pt;}
.y10c{bottom:288.977333pt;}
.y6e{bottom:293.705333pt;}
.y12d{bottom:293.780000pt;}
.ye8{bottom:300.437333pt;}
.y96{bottom:303.620000pt;}
.y10b{bottom:307.042667pt;}
.y6d{bottom:311.772000pt;}
.y12c{bottom:311.845333pt;}
.y95{bottom:313.597333pt;}
.y1d{bottom:317.530667pt;}
.y45{bottom:321.394667pt;}
.yc3{bottom:321.469333pt;}
.y97{bottom:323.438667pt;}
.y6c{bottom:329.837333pt;}
.y10a{bottom:337.064000pt;}
.ye7{bottom:338.185333pt;}
.ye6{bottom:341.861333pt;}
.y12b{bottom:344.081333pt;}
.y6b{bottom:347.902667pt;}
.y94{bottom:349.005333pt;}
.yc1{bottom:351.504000pt;}
.y1c{bottom:354.694667pt;}
.ye5{bottom:356.581333pt;}
.y44{bottom:358.558667pt;}
.yc0{bottom:361.481333pt;}
.y12a{bottom:362.148000pt;}
.y109{bottom:367.084000pt;}
.yc2{bottom:371.322667pt;}
.y92{bottom:371.444000pt;}
.ye4{bottom:375.349333pt;}
.y43{bottom:376.625333pt;}
.y6a{bottom:377.924000pt;}
.y129{bottom:380.213333pt;}
.y93{bottom:391.261333pt;}
.y1b{bottom:392.524000pt;}
.y42{bottom:394.690667pt;}
.y69{bottom:395.989333pt;}
.ye3{bottom:399.317333pt;}
.ybf{bottom:400.608000pt;}
.y108{bottom:401.089333pt;}
.y91{bottom:402.182667pt;}
.y128{bottom:409.644000pt;}
.y1a{bottom:410.920000pt;}
.y41{bottom:412.756000pt;}
.ye2{bottom:416.492000pt;}
.ybe{bottom:422.829333pt;}
.y68{bottom:426.009333pt;}
.y127{bottom:427.709333pt;}
.y107{bottom:427.789333pt;}
.y90{bottom:429.418667pt;}
.y19{bottom:430.496000pt;}
.y40{bottom:430.821333pt;}
.ye1{bottom:436.216000pt;}
.ybb{bottom:439.413333pt;}
.y67{bottom:444.076000pt;}
.y126{bottom:445.774667pt;}
.y106{bottom:445.856000pt;}
.y18{bottom:448.561333pt;}
.y3f{bottom:448.886667pt;}
.y8f{bottom:449.236000pt;}
.ybd{bottom:452.348000pt;}
.ybc{bottom:456.333333pt;}
.ye0{bottom:463.676000pt;}
.y125{bottom:463.841333pt;}
.y105{bottom:463.921333pt;}
.yba{bottom:466.394667pt;}
.y17{bottom:466.626667pt;}
.y3e{bottom:466.953333pt;}
.y66{bottom:474.096000pt;}
.y8e{bottom:476.552000pt;}
.yb9{bottom:484.460000pt;}
.y3d{bottom:485.018667pt;}
.y124{bottom:493.272000pt;}
.y104{bottom:496.598667pt;}
.y16{bottom:499.096000pt;}
.y8c{bottom:501.258667pt;}
.ydf{bottom:502.625333pt;}
.y8b{bottom:503.068000pt;}
.y3c{bottom:503.084000pt;}
.y65{bottom:504.117333pt;}
.y123{bottom:511.337333pt;}
.yb8{bottom:511.918667pt;}
.y8a{bottom:513.045333pt;}
.yde{bottom:520.690667pt;}
.y64{bottom:522.182667pt;}
.y8d{bottom:522.885333pt;}
.y103{bottom:529.276000pt;}
.y3b{bottom:530.544000pt;}
.ydd{bottom:538.757333pt;}
.y122{bottom:540.768000pt;}
.y15{bottom:544.925333pt;}
.y63{bottom:548.882667pt;}
.y89{bottom:550.202667pt;}
.yb7{bottom:550.808000pt;}
.y102{bottom:556.736000pt;}
.y121{bottom:558.834667pt;}
.y14{bottom:560.865333pt;}
.y62{bottom:566.948000pt;}
.yb6{bottom:568.873333pt;}
.y3a{bottom:569.493333pt;}
.ydc{bottom:572.762667pt;}
.y13{bottom:576.806667pt;}
.y120{bottom:576.900000pt;}
.y88{bottom:577.661333pt;}
.yb5{bottom:586.938667pt;}
.y39{bottom:587.558667pt;}
.ydb{bottom:590.828000pt;}
.y12{bottom:592.746667pt;}
.y61{bottom:593.648000pt;}
.y101{bottom:595.685333pt;}
.y11f{bottom:606.330667pt;}
.y11{bottom:608.686667pt;}
.y60{bottom:611.713333pt;}
.y100{bottom:613.750667pt;}
.y87{bottom:616.241333pt;}
.yb4{bottom:619.408000pt;}
.yda{bottom:620.849333pt;}
.y38{bottom:621.565333pt;}
.y11e{bottom:624.396000pt;}
.y10{bottom:624.626667pt;}
.y5f{bottom:629.778667pt;}
.yff{bottom:631.817333pt;}
.y86{bottom:634.306667pt;}
.yd9{bottom:638.914667pt;}
.yf{bottom:640.566667pt;}
.y11d{bottom:642.462667pt;}
.y37{bottom:651.585333pt;}
.y84{bottom:652.372000pt;}
.ye{bottom:656.506667pt;}
.y5d{bottom:657.736000pt;}
.y5c{bottom:659.545333pt;}
.y85{bottom:663.388000pt;}
.yb3{bottom:665.176000pt;}
.yfe{bottom:665.822667pt;}
.y5b{bottom:669.522667pt;}
.y82{bottom:670.437333pt;}
.yd{bottom:672.448000pt;}
.yd8{bottom:672.920000pt;}
.y11c{bottom:674.698667pt;}
.y5e{bottom:679.362667pt;}
.y83{bottom:681.453333pt;}
.y36{bottom:681.606667pt;}
.yb2{bottom:683.241333pt;}
.yfd{bottom:683.888000pt;}
.yc{bottom:688.388000pt;}
.yd7{bottom:690.985333pt;}
.y11b{bottom:692.764000pt;}
.yb0{bottom:701.306667pt;}
.y81{bottom:702.082667pt;}
.yb{bottom:704.328000pt;}
.yd6{bottom:709.052000pt;}
.y5a{bottom:709.848000pt;}
.yb1{bottom:712.322667pt;}
.yfc{bottom:713.909333pt;}
.y35{bottom:715.612000pt;}
.yaf{bottom:719.372000pt;}
.y80{bottom:720.148000pt;}
.ya{bottom:720.268000pt;}
.y11a{bottom:725.233333pt;}
.yd5{bottom:727.117333pt;}
.y59{bottom:727.914667pt;}
.yfb{bottom:731.974667pt;}
.y34{bottom:733.677333pt;}
.y9{bottom:736.208000pt;}
.yae{bottom:737.438667pt;}
.y8{bottom:752.148000pt;}
.y7e{bottom:754.097333pt;}
.yd4{bottom:754.576000pt;}
.y58{bottom:760.592000pt;}
.y33{bottom:761.634667pt;}
.yfa{bottom:761.994667pt;}
.y7f{bottom:764.074667pt;}
.y7{bottom:768.089333pt;}
.y119{bottom:770.785333pt;}
.y32{bottom:773.421333pt;}
.y7d{bottom:773.914667pt;}
.yad{bottom:776.941333pt;}
.y6{bottom:784.029333pt;}
.y118{bottom:788.850667pt;}
.y57{bottom:793.269333pt;}
.yd3{bottom:793.526667pt;}
.yac{bottom:795.337333pt;}
.yf9{bottom:796.001333pt;}
.y7c{bottom:796.653333pt;}
.y117{bottom:806.916000pt;}
.y5{bottom:808.272000pt;}
.y56{bottom:811.334667pt;}
.yd2{bottom:811.592000pt;}
.y31{bottom:811.762667pt;}
.yab{bottom:813.713333pt;}
.yf8{bottom:814.066667pt;}
.y116{bottom:824.981333pt;}
.y7b{bottom:825.886667pt;}
.yd1{bottom:829.657333pt;}
.y30{bottom:829.829333pt;}
.yaa{bottom:831.778667pt;}
.yf7{bottom:832.132000pt;}
.y55{bottom:838.794667pt;}
.y7a{bottom:846.870667pt;}
.y79{bottom:856.848000pt;}
.y115{bottom:857.218667pt;}
.y2e{bottom:857.785333pt;}
.yf6{bottom:858.832000pt;}
.ya9{bottom:859.238667pt;}
.y4{bottom:861.970667pt;}
.yd0{bottom:863.664000pt;}
.y2f{bottom:869.572000pt;}
.y114{bottom:875.284000pt;}
.yf5{bottom:876.897333pt;}
.y78{bottom:877.176000pt;}
.y54{bottom:877.744000pt;}
.ycf{bottom:881.729333pt;}
.y2d{bottom:887.968000pt;}
.y53{bottom:893.628000pt;}
.y3{bottom:894.581333pt;}
.yf4{bottom:894.962667pt;}
.y52{bottom:895.809333pt;}
.ya8{bottom:898.126667pt;}
.y113{bottom:904.714667pt;}
.y2c{bottom:907.105333pt;}
.y77{bottom:908.821333pt;}
.yce{bottom:911.750667pt;}
.ya7{bottom:916.192000pt;}
.yf3{bottom:922.422667pt;}
.y112{bottom:922.781333pt;}
.y51{bottom:929.816000pt;}
.y75{bottom:931.500000pt;}
.y2{bottom:934.996000pt;}
.y2a{bottom:935.894667pt;}
.y74{bottom:941.477333pt;}
.y29{bottom:945.872000pt;}
.ya6{bottom:945.886667pt;}
.y50{bottom:947.881333pt;}
.y76{bottom:951.317333pt;}
.y111{bottom:952.212000pt;}
.y1{bottom:953.593333pt;}
.y2b{bottom:955.712000pt;}
.ycd{bottom:959.836000pt;}
.yf2{bottom:961.373333pt;}
.y134{bottom:963.821333pt;}
.ya5{bottom:963.952000pt;}
.y73{bottom:966.382667pt;}
.ycc{bottom:977.901333pt;}
.y4f{bottom:977.902667pt;}
.yf1{bottom:979.438667pt;}
.y28{bottom:984.448000pt;}
.ya4{bottom:993.842667pt;}
.y27{bottom:1011.908000pt;}
.hd{height:31.880400pt;}
.h4{height:37.087439pt;}
.h5{height:39.850400pt;}
.he{height:40.960034pt;}
.h8{height:41.019345pt;}
.h7{height:43.636400pt;}
.ha{height:44.632747pt;}
.h3{height:45.525402pt;}
.hf{height:52.989733pt;}
.h11{height:52.995067pt;}
.h6{height:53.559147pt;}
.h15{height:54.419315pt;}
.h10{height:55.901733pt;}
.h1a{height:58.340400pt;}
.h1b{height:58.550012pt;}
.h2{height:64.913535pt;}
.hb{height:82.996400pt;}
.h14{height:83.001733pt;}
.hc{height:83.545733pt;}
.h17{height:83.551067pt;}
.h18{height:85.083345pt;}
.h19{height:92.758012pt;}
.h9{height:114.603345pt;}
.h13{height:122.905733pt;}
.h12{height:154.512678pt;}
.h16{height:154.518012pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:95.048000pt;}
.x8{left:96.000000pt;}
.x2a{left:108.640000pt;}
.x3e{left:110.488000pt;}
.x1c{left:113.777333pt;}
.xa0{left:115.905333pt;}
.x9{left:118.581333pt;}
.x54{left:120.913333pt;}
.x3f{left:123.653333pt;}
.x37{left:130.661333pt;}
.x7{left:132.364000pt;}
.x55{left:133.725333pt;}
.xaa{left:136.172000pt;}
.x72{left:146.344000pt;}
.x6{left:152.289333pt;}
.x8e{left:153.936000pt;}
.xab{left:162.360000pt;}
.xe{left:167.366667pt;}
.xf{left:178.865333pt;}
.x10{left:184.409333pt;}
.x11{left:193.096000pt;}
.x5f{left:198.217333pt;}
.x31{left:204.481333pt;}
.x60{left:206.904000pt;}
.x44{left:210.968000pt;}
.x61{left:212.453333pt;}
.x38{left:218.256000pt;}
.x40{left:221.912000pt;}
.x1{left:223.858667pt;}
.x62{left:225.528000pt;}
.x45{left:226.776000pt;}
.x39{left:232.336000pt;}
.x3a{left:237.880000pt;}
.xa3{left:241.026667pt;}
.x8b{left:242.376000pt;}
.xad{left:245.181333pt;}
.x2b{left:246.522667pt;}
.xc{left:249.025333pt;}
.x2{left:251.873333pt;}
.x32{left:253.773333pt;}
.x19{left:254.884000pt;}
.x85{left:255.982667pt;}
.xa4{left:257.734667pt;}
.x16{left:259.509333pt;}
.x3b{left:261.865333pt;}
.x58{left:265.809333pt;}
.x17{left:266.889333pt;}
.xa{left:270.372000pt;}
.x7b{left:272.424000pt;}
.x94{left:274.554667pt;}
.x13{left:276.457333pt;}
.x79{left:280.128000pt;}
.x46{left:281.096000pt;}
.xa2{left:282.445333pt;}
.x50{left:284.364000pt;}
.xb{left:288.514667pt;}
.x18{left:290.050667pt;}
.x78{left:291.708000pt;}
.x93{left:295.212000pt;}
.x4a{left:297.765333pt;}
.xa1{left:299.568000pt;}
.x99{left:304.526667pt;}
.x75{left:306.642667pt;}
.x73{left:314.166667pt;}
.x4f{left:316.998667pt;}
.x9f{left:319.018667pt;}
.x43{left:320.362667pt;}
.x9b{left:322.629333pt;}
.x7c{left:325.441333pt;}
.x9d{left:328.161333pt;}
.x76{left:331.865333pt;}
.x3{left:333.577333pt;}
.x22{left:337.242667pt;}
.x9e{left:338.666667pt;}
.x7e{left:339.866667pt;}
.x74{left:342.000000pt;}
.x4{left:344.588000pt;}
.x15{left:347.461333pt;}
.x5d{left:350.041333pt;}
.x23{left:351.298667pt;}
.x9c{left:352.280000pt;}
.x5c{left:356.953333pt;}
.x77{left:358.797333pt;}
.x84{left:359.809333pt;}
.x5a{left:363.492000pt;}
.x14{left:366.817333pt;}
.x5{left:367.833333pt;}
.x59{left:368.918667pt;}
.x4b{left:372.481333pt;}
.x91{left:374.661333pt;}
.x7d{left:376.393333pt;}
.x26{left:379.162667pt;}
.x33{left:382.725333pt;}
.x82{left:386.272000pt;}
.x52{left:389.562667pt;}
.x9a{left:392.245333pt;}
.x12{left:393.214667pt;}
.x34{left:394.534667pt;}
.x27{left:398.326667pt;}
.x83{left:400.697333pt;}
.x92{left:403.536000pt;}
.x53{left:405.714667pt;}
.x87{left:407.622667pt;}
.x5e{left:409.153333pt;}
.x1a{left:413.280000pt;}
.x66{left:414.486667pt;}
.x28{left:417.077333pt;}
.x4c{left:418.954667pt;}
.x5b{left:426.862667pt;}
.x97{left:427.829333pt;}
.x7a{left:428.825333pt;}
.xd{left:431.357333pt;}
.x86{left:432.305333pt;}
.x2c{left:434.921333pt;}
.x1b{left:436.442667pt;}
.x98{left:440.022667pt;}
.x7f{left:441.540000pt;}
.x4e{left:443.710667pt;}
.x4d{left:446.341333pt;}
.x1f{left:451.814667pt;}
.x81{left:455.965333pt;}
.x67{left:460.646667pt;}
.x20{left:466.388000pt;}
.xa5{left:468.126667pt;}
.x88{left:469.242667pt;}
.x95{left:470.302667pt;}
.x96{left:472.789333pt;}
.x89{left:475.012000pt;}
.xa6{left:477.642667pt;}
.x80{left:480.646667pt;}
.x8a{left:483.325333pt;}
.x68{left:485.357333pt;}
.xa7{left:488.353333pt;}
.x29{left:492.064000pt;}
.xac{left:496.073333pt;}
.x24{left:498.444000pt;}
.x69{left:504.668000pt;}
.xa8{left:507.549333pt;}
.x25{left:509.065333pt;}
.x6a{left:510.212000pt;}
.xa9{left:518.922667pt;}
.x56{left:527.212000pt;}
.x47{left:530.734667pt;}
.x8f{left:532.233333pt;}
.x48{left:538.008000pt;}
.x57{left:539.676000pt;}
.x6b{left:548.956000pt;}
.x6c{left:554.498667pt;}
.x3c{left:559.666667pt;}
.x6d{left:563.186667pt;}
.x3d{left:564.918667pt;}
.x63{left:566.216000pt;}
.x6e{left:568.729333pt;}
.x1d{left:573.425333pt;}
.x64{left:574.554667pt;}
.x6f{left:577.042667pt;}
.x70{left:585.010667pt;}
.x1e{left:588.774667pt;}
.x49{left:596.088000pt;}
.x71{left:605.250667pt;}
.x90{left:614.928000pt;}
.x2d{left:617.842667pt;}
.x2e{left:627.940000pt;}
.x8c{left:631.046667pt;}
.xae{left:634.818667pt;}
.x41{left:637.448000pt;}
.x35{left:642.284000pt;}
.x8d{left:645.353333pt;}
.x42{left:649.860000pt;}
.x36{left:652.370667pt;}
.x2f{left:660.784000pt;}
.x30{left:668.437333pt;}
.x65{left:674.913333pt;}
.x51{left:688.185333pt;}
}




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