
    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_93409e6a8d8b45fa5fb315d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_aba8ba06ce9d49dd1dcaae5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_92b323a69e483529ebaa3255.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3259fb1c89036b130667780b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.870000;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_f4c2e8d5025d61c52602fb2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740000;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_6fa63b11374deb570395ce9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.040000;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_f47502a0238e77f87d25ff6e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c8b5dd754f00104336bd8af8.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m22{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m6{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.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);}
.m16{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m1b{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);}
.m1d{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);}
.m1f{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);}
.m18{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);}
.m5{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m1{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);}
.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);}
.mc{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);}
.m25{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);}
.m4{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);}
.m1c{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);}
.m26{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);}
.m7{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);}
.m1e{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);}
.me{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.mb{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m11{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);}
.m13{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);}
.m24{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);}
.m1a{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);}
.m19{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);}
.m27{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);}
.ma{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:8.694000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls28{letter-spacing:0.000608px;}
.ls23{letter-spacing:0.001465px;}
.ls3b{letter-spacing:0.001502px;}
.ls3c{letter-spacing:0.106800px;}
.ls22{letter-spacing:0.642088px;}
.ls20{letter-spacing:0.648088px;}
.ls21{letter-spacing:0.673133px;}
.ls3f{letter-spacing:5.224050px;}
.ls3e{letter-spacing:6.730050px;}
.ls11{letter-spacing:11.205600px;}
.lsf{letter-spacing:11.596466px;}
.lse{letter-spacing:11.656242px;}
.ls4{letter-spacing:11.954850px;}
.ls2a{letter-spacing:11.957700px;}
.ls39{letter-spacing:12.025910px;}
.lsd{letter-spacing:12.851754px;}
.ls41{letter-spacing:13.017747px;}
.ls3d{letter-spacing:13.362714px;}
.ls3a{letter-spacing:13.408976px;}
.ls37{letter-spacing:13.448400px;}
.ls36{letter-spacing:13.454400px;}
.ls38{letter-spacing:13.487588px;}
.ls2c{letter-spacing:13.538731px;}
.ls40{letter-spacing:13.556522px;}
.ls1f{letter-spacing:13.808164px;}
.ls32{letter-spacing:13.936690px;}
.ls35{letter-spacing:14.108118px;}
.ls34{letter-spacing:14.114241px;}
.ls1d{letter-spacing:14.645022px;}
.lsb{letter-spacing:14.704798px;}
.ls2b{letter-spacing:14.741280px;}
.lsc{letter-spacing:14.764573px;}
.ls6{letter-spacing:14.884124px;}
.ls27{letter-spacing:14.923389px;}
.ls33{letter-spacing:14.938200px;}
.ls12{letter-spacing:14.943900px;}
.ls2f{letter-spacing:14.944200px;}
.ls2e{letter-spacing:14.944665px;}
.ls8{letter-spacing:15.003676px;}
.ls1e{letter-spacing:15.063451px;}
.ls1a{letter-spacing:15.123227px;}
.ls2d{letter-spacing:15.136590px;}
.ls24{letter-spacing:15.154406px;}
.ls31{letter-spacing:15.163977px;}
.ls17{letter-spacing:15.183002px;}
.ls19{letter-spacing:15.242778px;}
.ls18{letter-spacing:15.481880px;}
.ls3{letter-spacing:15.541656px;}
.ls1c{letter-spacing:15.601432px;}
.ls26{letter-spacing:16.018082px;}
.ls1b{letter-spacing:16.079636px;}
.ls16{letter-spacing:16.737168px;}
.ls13{letter-spacing:17.454475px;}
.ls15{letter-spacing:17.514251px;}
.ls25{letter-spacing:17.671024px;}
.ls2{letter-spacing:17.753353px;}
.ls14{letter-spacing:18.889090px;}
.ls10{letter-spacing:18.948865px;}
.lsa{letter-spacing:19.666172px;}
.ls7{letter-spacing:20.682358px;}
.ls29{letter-spacing:21.500435px;}
.ls9{letter-spacing:22.236523px;}
.ls30{letter-spacing:22.271024px;}
.ls1{letter-spacing:28.453654px;}
.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;}
}
.ws4d{word-spacing:-14.943900px;}
.ws71{word-spacing:-13.449600px;}
.ws1b{word-spacing:-11.955150px;}
.ws4{word-spacing:-10.460700px;}
.wsa9{word-spacing:-3.765863px;}
.ws3c{word-spacing:-3.347434px;}
.ws3d{word-spacing:-3.287658px;}
.ws9d{word-spacing:-2.869229px;}
.ws80{word-spacing:-2.630126px;}
.ws6a{word-spacing:-2.450800px;}
.wsa0{word-spacing:-2.391024px;}
.ws9f{word-spacing:-2.331248px;}
.wsa1{word-spacing:-2.211697px;}
.ws9b{word-spacing:-2.151922px;}
.ws0{word-spacing:-2.092140px;}
.ws62{word-spacing:-1.853044px;}
.wsbe{word-spacing:-1.829146px;}
.ws66{word-spacing:-1.793268px;}
.wsa8{word-spacing:-1.733492px;}
.wsa{word-spacing:-1.673717px;}
.ws6e{word-spacing:-1.613941px;}
.ws61{word-spacing:-1.494390px;}
.ws16{word-spacing:-1.434614px;}
.wsbf{word-spacing:-1.398758px;}
.ws68{word-spacing:-1.374839px;}
.ws1d{word-spacing:-1.255288px;}
.ws5a{word-spacing:-1.135736px;}
.wse{word-spacing:-1.075961px;}
.ws98{word-spacing:-1.016185px;}
.wsd1{word-spacing:-0.968371px;}
.ws89{word-spacing:-0.956410px;}
.ws8b{word-spacing:-0.914573px;}
.ws9a{word-spacing:-0.836858px;}
.wsb8{word-spacing:-0.806976px;}
.ws5c{word-spacing:-0.777083px;}
.wsb7{word-spacing:-0.753178px;}
.ws99{word-spacing:-0.748206px;}
.wsad{word-spacing:-0.645581px;}
.ws9{word-spacing:-0.597756px;}
.wscf{word-spacing:-0.591782px;}
.wsc5{word-spacing:-0.537984px;}
.ws81{word-spacing:-0.537980px;}
.wsc3{word-spacing:-0.484186px;}
.ws17{word-spacing:-0.478205px;}
.wsd0{word-spacing:-0.430387px;}
.ws2b{word-spacing:-0.418429px;}
.wscd{word-spacing:-0.376589px;}
.ws27{word-spacing:-0.358654px;}
.ws14{word-spacing:-0.298878px;}
.ws6f{word-spacing:-0.268992px;}
.ws28{word-spacing:-0.239102px;}
.ws70{word-spacing:-0.215194px;}
.ws88{word-spacing:-0.198924px;}
.ws3b{word-spacing:-0.179327px;}
.wsb4{word-spacing:-0.161395px;}
.wsc{word-spacing:-0.119551px;}
.wsbc{word-spacing:-0.107597px;}
.ws7{word-spacing:-0.059776px;}
.ws72{word-spacing:-0.053798px;}
.ws87{word-spacing:-0.007640px;}
.ws1a{word-spacing:-0.000107px;}
.ws2{word-spacing:0.000000px;}
.wsb1{word-spacing:0.053798px;}
.ws13{word-spacing:0.059776px;}
.ws8a{word-spacing:0.107597px;}
.wsd{word-spacing:0.119551px;}
.ws82{word-spacing:0.161395px;}
.wsf{word-spacing:0.179327px;}
.ws91{word-spacing:0.203993px;}
.ws90{word-spacing:0.208563px;}
.wsae{word-spacing:0.215194px;}
.ws11{word-spacing:0.239102px;}
.wsaa{word-spacing:0.268992px;}
.ws35{word-spacing:0.298878px;}
.wsc1{word-spacing:0.322790px;}
.wsb{word-spacing:0.358654px;}
.wscc{word-spacing:0.376589px;}
.ws1{word-spacing:0.417541px;}
.ws67{word-spacing:0.418429px;}
.ws3{word-spacing:0.422252px;}
.ws7e{word-spacing:0.478205px;}
.wsbd{word-spacing:0.484186px;}
.ws19{word-spacing:0.537980px;}
.wsc0{word-spacing:0.591782px;}
.ws50{word-spacing:0.597756px;}
.ws4f{word-spacing:0.657532px;}
.ws79{word-spacing:0.674400px;}
.wsa2{word-spacing:0.717307px;}
.ws39{word-spacing:0.777083px;}
.ws3a{word-spacing:0.896634px;}
.ws57{word-spacing:0.956410px;}
.ws6b{word-spacing:1.016185px;}
.ws2a{word-spacing:1.075961px;}
.wsc2{word-spacing:1.075968px;}
.wsba{word-spacing:1.129766px;}
.ws54{word-spacing:1.135736px;}
.wsbb{word-spacing:1.183565px;}
.ws5f{word-spacing:1.195512px;}
.ws92{word-spacing:1.291162px;}
.ws45{word-spacing:1.315063px;}
.ws65{word-spacing:1.374839px;}
.ws7f{word-spacing:1.411218px;}
.ws1c{word-spacing:1.434614px;}
.ws18{word-spacing:1.494390px;}
.ws8{word-spacing:1.554166px;}
.ws6{word-spacing:1.613941px;}
.wscb{word-spacing:1.667750px;}
.ws4b{word-spacing:1.733492px;}
.wsaf{word-spacing:1.882944px;}
.ws23{word-spacing:1.912819px;}
.ws6d{word-spacing:1.972595px;}
.wsca{word-spacing:1.990541px;}
.ws24{word-spacing:2.032370px;}
.wsb9{word-spacing:2.044339px;}
.ws4e{word-spacing:2.151922px;}
.ws38{word-spacing:2.271473px;}
.ws3e{word-spacing:2.331248px;}
.ws1f{word-spacing:2.510575px;}
.ws48{word-spacing:2.570351px;}
.wsa3{word-spacing:2.630126px;}
.wsb5{word-spacing:2.636122px;}
.ws6c{word-spacing:2.689902px;}
.ws15{word-spacing:2.749678px;}
.ws25{word-spacing:2.809453px;}
.ws5{word-spacing:2.869236px;}
.ws52{word-spacing:2.988780px;}
.ws40{word-spacing:3.108331px;}
.ws7c{word-spacing:3.156160px;}
.ws69{word-spacing:3.168107px;}
.ws7d{word-spacing:3.203980px;}
.wsc8{word-spacing:3.216096px;}
.wsb0{word-spacing:3.220339px;}
.wsb2{word-spacing:3.220906px;}
.wsc4{word-spacing:3.221520px;}
.wsb6{word-spacing:3.221846px;}
.wsc9{word-spacing:3.222211px;}
.wsd2{word-spacing:3.224093px;}
.wsab{word-spacing:3.224822px;}
.ws47{word-spacing:3.227882px;}
.ws73{word-spacing:3.227904px;}
.ws41{word-spacing:3.347434px;}
.wsd4{word-spacing:3.496896px;}
.ws34{word-spacing:3.526760px;}
.wsa6{word-spacing:3.706087px;}
.ws26{word-spacing:3.765863px;}
.wsb3{word-spacing:3.765888px;}
.ws5e{word-spacing:3.825638px;}
.wsce{word-spacing:3.873485px;}
.ws51{word-spacing:3.885414px;}
.ws10{word-spacing:3.897885px;}
.wsa7{word-spacing:3.945190px;}
.ws42{word-spacing:4.004965px;}
.ws9e{word-spacing:4.064741px;}
.ws3f{word-spacing:4.124516px;}
.ws32{word-spacing:4.244068px;}
.ws12{word-spacing:4.303872px;}
.ws29{word-spacing:4.363619px;}
.ws96{word-spacing:4.542946px;}
.ws56{word-spacing:4.662497px;}
.ws2e{word-spacing:4.722272px;}
.ws2f{word-spacing:4.782048px;}
.ws64{word-spacing:4.841824px;}
.wsd3{word-spacing:4.841856px;}
.ws44{word-spacing:4.901599px;}
.ws55{word-spacing:5.140702px;}
.wsc6{word-spacing:5.164646px;}
.ws5d{word-spacing:5.439580px;}
.wsa5{word-spacing:5.559131px;}
.ws1e{word-spacing:5.738458px;}
.ws9c{word-spacing:5.858009px;}
.ws22{word-spacing:5.917784px;}
.ws46{word-spacing:5.977560px;}
.ws33{word-spacing:6.097111px;}
.ws60{word-spacing:6.156887px;}
.ws49{word-spacing:6.216662px;}
.ws4a{word-spacing:6.276438px;}
.ws4c{word-spacing:6.515540px;}
.ws53{word-spacing:6.575316px;}
.wsc7{word-spacing:6.617203px;}
.ws59{word-spacing:6.635092px;}
.wsac{word-spacing:6.671002px;}
.ws31{word-spacing:6.754643px;}
.ws20{word-spacing:6.874194px;}
.ws97{word-spacing:6.933970px;}
.ws63{word-spacing:6.993745px;}
.ws30{word-spacing:7.113296px;}
.ws2d{word-spacing:7.292623px;}
.ws2c{word-spacing:7.352399px;}
.ws5b{word-spacing:7.471950px;}
.ws21{word-spacing:7.711052px;}
.ws36{word-spacing:7.770828px;}
.ws58{word-spacing:8.368584px;}
.wsa4{word-spacing:8.488135px;}
.ws37{word-spacing:9.803198px;}
.ws43{word-spacing:16.199188px;}
.ws77{word-spacing:155.616000px;}
.ws86{word-spacing:164.614512px;}
.ws7a{word-spacing:171.939686px;}
.ws76{word-spacing:172.600925px;}
.ws8e{word-spacing:178.063574px;}
.ws84{word-spacing:178.067894px;}
.ws8f{word-spacing:178.069670px;}
.ws94{word-spacing:178.088794px;}
.ws8c{word-spacing:194.365574px;}
.ws74{word-spacing:194.373619px;}
.ws78{word-spacing:278.876170px;}
.ws95{word-spacing:307.078157px;}
.ws93{word-spacing:312.485635px;}
.ws85{word-spacing:323.798170px;}
.ws8d{word-spacing:340.098000px;}
.ws75{word-spacing:341.297722px;}
.ws83{word-spacing:411.666336px;}
.ws7b{word-spacing:449.703274px;}
._1c{margin-left:-27.676103px;}
._1e{margin-left:-26.659918px;}
._39{margin-left:-25.315102px;}
._38{margin-left:-24.304890px;}
._37{margin-left:-23.055569px;}
._4{margin-left:-7.962163px;}
._8{margin-left:-6.635092px;}
._d{margin-left:-5.128751px;}
._1{margin-left:-3.849538px;}
._9{margin-left:-2.761677px;}
._3{margin-left:-1.506341px;}
._34{width:1.430829px;}
._3c{width:2.905114px;}
._1b{width:5.140702px;}
._1d{width:6.874194px;}
._0{width:10.879128px;}
._3a{width:11.883500px;}
._3b{width:13.521357px;}
._18{width:14.716811px;}
._19{width:15.732982px;}
._22{width:16.988221px;}
._b{width:18.171782px;}
._12{width:19.785724px;}
._2{width:21.758256px;}
._a{width:23.671138px;}
._13{width:25.165528px;}
._21{width:26.313215px;}
._c{width:27.437000px;}
._1a{width:29.541097px;}
._14{width:31.334428px;}
._5{width:33.355008px;}
._10{width:36.164238px;}
._16{width:37.359750px;}
._1f{width:39.033467px;}
._35{width:40.049652px;}
._15{width:41.065837px;}
._11{width:42.261349px;}
._17{width:43.289534px;}
._6{width:54.429308px;}
._7{width:69.368876px;}
._20{width:93.548814px;}
._25{width:116.527334px;}
._30{width:121.046400px;}
._24{width:138.797295px;}
._26{width:142.764253px;}
._31{width:147.229520px;}
._27{width:172.655044px;}
._2f{width:194.427418px;}
._2d{width:207.877018px;}
._23{width:275.788487px;}
._2b{width:293.362675px;}
._29{width:315.796608px;}
._2a{width:331.129152px;}
._2e{width:343.144154px;}
._2c{width:376.535002px;}
._32{width:419.627520px;}
._28{width:453.789504px;}
._33{width:484.938778px;}
._e{width:1915.672007px;}
._36{width:2604.718007px;}
._f{width:2628.628007px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs7{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y42{bottom:45.921000px;}
.y41{bottom:99.720000px;}
.y18{bottom:100.260000px;}
.y74{bottom:111.342000px;}
.yd9{bottom:111.924000px;}
.yfc{bottom:112.357500px;}
.y177{bottom:114.661500px;}
.y157{bottom:116.407500px;}
.y17{bottom:118.147500px;}
.y40{bottom:120.610500px;}
.y1a8{bottom:125.112000px;}
.y154{bottom:127.624500px;}
.y73{bottom:132.234000px;}
.yd8{bottom:132.816000px;}
.yfb{bottom:133.248000px;}
.y176{bottom:133.812000px;}
.y16{bottom:136.035000px;}
.y156{bottom:137.298000px;}
.y93{bottom:139.255500px;}
.y131{bottom:140.083500px;}
.y3f{bottom:141.502500px;}
.y1a7{bottom:144.262500px;}
.y153{bottom:148.516500px;}
.y175{bottom:152.962500px;}
.y72{bottom:153.126000px;}
.yd7{bottom:153.706500px;}
.y15{bottom:153.924000px;}
.yfa{bottom:154.140000px;}
.y155{bottom:158.190000px;}
.y92{bottom:160.147500px;}
.y130{bottom:161.916000px;}
.y3e{bottom:162.394500px;}
.y1a6{bottom:163.413000px;}
.y152{bottom:169.407000px;}
.y14{bottom:171.811500px;}
.y174{bottom:172.113000px;}
.y71{bottom:174.016500px;}
.yd6{bottom:174.598500px;}
.yf9{bottom:175.032000px;}
.y12f{bottom:178.354500px;}
.ya8{bottom:179.082000px;}
.y91{bottom:181.039500px;}
.y1a5{bottom:182.563500px;}
.y3d{bottom:183.285000px;}
.y13{bottom:189.699000px;}
.y151{bottom:190.299000px;}
.y12e{bottom:194.793000px;}
.y70{bottom:194.908500px;}
.yd5{bottom:195.490500px;}
.y173{bottom:195.747000px;}
.yf8{bottom:195.922500px;}
.ya7{bottom:199.972500px;}
.y1a4{bottom:201.714000px;}
.y90{bottom:201.930000px;}
.y3c{bottom:204.177000px;}
.y12{bottom:207.586500px;}
.y150{bottom:211.191000px;}
.y12d{bottom:211.231500px;}
.y6f{bottom:215.800500px;}
.yd4{bottom:216.381000px;}
.yf7{bottom:216.814500px;}
.ya6{bottom:220.864500px;}
.y8f{bottom:222.822000px;}
.y3b{bottom:225.069000px;}
.y11{bottom:225.475500px;}
.y12c{bottom:227.670000px;}
.y14f{bottom:232.081500px;}
.y172{bottom:234.571500px;}
.y6e{bottom:236.691000px;}
.yd3{bottom:237.273000px;}
.yf6{bottom:237.706500px;}
.y1a3{bottom:240.015000px;}
.ya5{bottom:241.756500px;}
.y8e{bottom:243.714000px;}
.y12b{bottom:244.108500px;}
.y3a{bottom:245.961000px;}
.y10{bottom:252.330000px;}
.y14e{bottom:252.973500px;}
.y6d{bottom:257.583000px;}
.yd2{bottom:258.165000px;}
.yf5{bottom:258.597000px;}
.y1a2{bottom:259.165500px;}
.y12a{bottom:260.547000px;}
.ya4{bottom:262.647000px;}
.y171{bottom:263.035500px;}
.y8d{bottom:264.606000px;}
.y39{bottom:266.851500px;}
.yf{bottom:270.217500px;}
.y14d{bottom:273.865500px;}
.y1a1{bottom:278.316000px;}
.y6c{bottom:278.475000px;}
.yd1{bottom:279.055500px;}
.yf4{bottom:279.489000px;}
.ya3{bottom:283.539000px;}
.y129{bottom:284.187000px;}
.y8c{bottom:285.496500px;}
.y38{bottom:287.743500px;}
.ye{bottom:288.105000px;}
.y170{bottom:291.501000px;}
.y1a0{bottom:297.466500px;}
.y14c{bottom:299.239500px;}
.y6b{bottom:299.365500px;}
.yd0{bottom:299.947500px;}
.yf3{bottom:300.381000px;}
.ya2{bottom:304.431000px;}
.yd{bottom:305.994000px;}
.y8b{bottom:306.388500px;}
.y37{bottom:308.635500px;}
.y19f{bottom:316.617000px;}
.y128{bottom:318.795000px;}
.y16f{bottom:319.966500px;}
.y6a{bottom:320.257500px;}
.ycf{bottom:320.839500px;}
.yf2{bottom:321.273000px;}
.yc{bottom:323.881500px;}
.ya1{bottom:325.323000px;}
.y8a{bottom:327.280500px;}
.y36{bottom:329.526000px;}
.y19e{bottom:335.767500px;}
.y14b{bottom:338.064000px;}
.y16e{bottom:339.465000px;}
.y69{bottom:341.149500px;}
.yce{bottom:341.730000px;}
.yb{bottom:341.769000px;}
.yf1{bottom:342.163500px;}
.ya0{bottom:346.213500px;}
.y89{bottom:348.171000px;}
.y1ad{bottom:350.188500px;}
.y35{bottom:350.418000px;}
.y127{bottom:352.006500px;}
.y19d{bottom:354.918000px;}
.y14a{bottom:358.956000px;}
.y16d{bottom:358.963500px;}
.ya{bottom:359.658000px;}
.y68{bottom:362.041500px;}
.ycd{bottom:362.622000px;}
.yf0{bottom:363.055500px;}
.y9f{bottom:367.105500px;}
.y88{bottom:369.063000px;}
.y1ac{bottom:369.339000px;}
.y34{bottom:371.310000px;}
.y126{bottom:372.898500px;}
.y19c{bottom:374.070000px;}
.y9{bottom:377.545500px;}
.y149{bottom:379.846500px;}
.y67{bottom:382.932000px;}
.ycc{bottom:383.514000px;}
.yef{bottom:383.947500px;}
.y16c{bottom:387.429000px;}
.y87{bottom:387.781500px;}
.y9e{bottom:387.997500px;}
.y1ab{bottom:388.489500px;}
.y86{bottom:389.955000px;}
.y33{bottom:392.200500px;}
.y108{bottom:392.265000px;}
.y19b{bottom:393.220500px;}
.y125{bottom:393.789000px;}
.y8{bottom:395.433000px;}
.y148{bottom:400.738500px;}
.y66{bottom:403.824000px;}
.ycb{bottom:404.406000px;}
.yee{bottom:404.838000px;}
.y107{bottom:406.462500px;}
.y9d{bottom:408.888000px;}
.y85{bottom:410.845500px;}
.y19a{bottom:412.371000px;}
.y7{bottom:413.322000px;}
.y124{bottom:414.681000px;}
.y16b{bottom:415.894500px;}
.y32{bottom:417.576000px;}
.y147{bottom:421.630500px;}
.y65{bottom:424.716000px;}
.yca{bottom:425.296500px;}
.yed{bottom:425.730000px;}
.y106{bottom:428.295000px;}
.y9c{bottom:429.780000px;}
.y199{bottom:431.521500px;}
.y84{bottom:431.737500px;}
.y16a{bottom:435.393000px;}
.y6{bottom:437.187000px;}
.y123{bottom:440.056500px;}
.y146{bottom:442.521000px;}
.y105{bottom:444.733500px;}
.y64{bottom:445.606500px;}
.yc9{bottom:446.188500px;}
.y9b{bottom:450.672000px;}
.yec{bottom:451.104000px;}
.y83{bottom:452.629500px;}
.y169{bottom:454.891500px;}
.y5{bottom:455.074500px;}
.y104{bottom:461.172000px;}
.y145{bottom:463.413000px;}
.y63{bottom:466.498500px;}
.yc8{bottom:467.080500px;}
.y198{bottom:469.822500px;}
.y9a{bottom:471.562500px;}
.y4{bottom:472.963500px;}
.y82{bottom:473.520000px;}
.y168{bottom:474.390000px;}
.y122{bottom:475.398000px;}
.y103{bottom:477.610500px;}
.y144{bottom:484.305000px;}
.y62{bottom:487.390500px;}
.yc7{bottom:487.971000px;}
.y197{bottom:488.973000px;}
.yeb{bottom:489.928500px;}
.y3{bottom:490.851000px;}
.y99{bottom:492.454500px;}
.y81{bottom:494.412000px;}
.y121{bottom:496.290000px;}
.y31{bottom:496.788000px;}
.y102{bottom:501.250500px;}
.y143{bottom:505.197000px;}
.y196{bottom:508.123500px;}
.y61{bottom:508.281000px;}
.yc6{bottom:508.863000px;}
.yea{bottom:510.820500px;}
.y167{bottom:511.822500px;}
.y98{bottom:513.346500px;}
.y2{bottom:514.716000px;}
.y80{bottom:515.304000px;}
.y120{bottom:517.182000px;}
.y30{bottom:517.678500px;}
.y142{bottom:526.087500px;}
.y195{bottom:527.274000px;}
.y60{bottom:529.173000px;}
.yc5{bottom:529.755000px;}
.ye9{bottom:531.712500px;}
.y1{bottom:532.605000px;}
.y166{bottom:532.713000px;}
.y97{bottom:534.237000px;}
.y101{bottom:535.858500px;}
.y7f{bottom:536.194500px;}
.y11f{bottom:538.072500px;}
.y194{bottom:546.424500px;}
.y141{bottom:546.979500px;}
.y5f{bottom:550.065000px;}
.yc4{bottom:550.645500px;}
.ye8{bottom:552.603000px;}
.y165{bottom:553.605000px;}
.y100{bottom:555.091500px;}
.y96{bottom:555.129000px;}
.y2f{bottom:556.503000px;}
.y7e{bottom:557.086500px;}
.y11e{bottom:558.964500px;}
.y193{bottom:565.575000px;}
.y140{bottom:567.871500px;}
.y5e{bottom:570.955500px;}
.yc3{bottom:571.537500px;}
.ye7{bottom:573.495000px;}
.y164{bottom:574.497000px;}
.y95{bottom:576.021000px;}
.y2e{bottom:577.395000px;}
.y11d{bottom:579.856500px;}
.y7d{bottom:582.462000px;}
.y192{bottom:584.725500px;}
.y13f{bottom:588.762000px;}
.y5d{bottom:591.847500px;}
.yc2{bottom:592.429500px;}
.ye6{bottom:594.387000px;}
.y163{bottom:595.387500px;}
.y94{bottom:596.913000px;}
.y2d{bottom:598.287000px;}
.y11c{bottom:600.747000px;}
.y191{bottom:603.876000px;}
.y5c{bottom:612.739500px;}
.yc1{bottom:613.320000px;}
.ye5{bottom:615.277500px;}
.y162{bottom:616.279500px;}
.y7c{bottom:617.803500px;}
.y2c{bottom:619.177500px;}
.y11b{bottom:621.639000px;}
.y190{bottom:623.026500px;}
.y13e{bottom:630.958500px;}
.y5b{bottom:633.631500px;}
.yc0{bottom:634.212000px;}
.y161{bottom:637.171500px;}
.y7b{bottom:638.695500px;}
.y2b{bottom:640.069500px;}
.ye4{bottom:640.653000px;}
.y18f{bottom:642.177000px;}
.y11a{bottom:642.531000px;}
.y13d{bottom:652.791000px;}
.y5a{bottom:654.522000px;}
.ybf{bottom:655.104000px;}
.y160{bottom:658.062000px;}
.y7a{bottom:659.587500px;}
.y2a{bottom:660.961500px;}
.y18e{bottom:661.327500px;}
.ye3{bottom:661.545000px;}
.y119{bottom:663.421500px;}
.y13c{bottom:669.229500px;}
.y59{bottom:675.414000px;}
.ybe{bottom:675.996000px;}
.y15f{bottom:678.954000px;}
.y79{bottom:680.478000px;}
.y29{bottom:681.852000px;}
.ye2{bottom:682.435500px;}
.y13b{bottom:685.666500px;}
.y58{bottom:696.306000px;}
.ybd{bottom:696.886500px;}
.y18d{bottom:699.628500px;}
.y15e{bottom:699.846000px;}
.y78{bottom:701.370000px;}
.y13a{bottom:702.105000px;}
.y28{bottom:702.744000px;}
.ye1{bottom:703.327500px;}
.y118{bottom:705.618000px;}
.yff{bottom:717.196500px;}
.ybc{bottom:717.778500px;}
.y139{bottom:718.543500px;}
.y18c{bottom:718.779000px;}
.y15d{bottom:720.736500px;}
.y57{bottom:721.680000px;}
.y77{bottom:722.262000px;}
.y27{bottom:723.636000px;}
.ye0{bottom:724.219500px;}
.y117{bottom:727.450500px;}
.y138{bottom:734.982000px;}
.y18b{bottom:737.929500px;}
.ybb{bottom:738.670500px;}
.y15c{bottom:741.628500px;}
.yfe{bottom:742.572000px;}
.y76{bottom:743.152500px;}
.y116{bottom:743.889000px;}
.y26{bottom:744.526500px;}
.ydf{bottom:745.110000px;}
.y56{bottom:746.112000px;}
.y18a{bottom:757.081500px;}
.y137{bottom:758.623500px;}
.yba{bottom:759.561000px;}
.y115{bottom:760.327500px;}
.y15b{bottom:762.520500px;}
.y75{bottom:764.044500px;}
.y25{bottom:765.418500px;}
.yde{bottom:766.002000px;}
.yfd{bottom:767.004000px;}
.y189{bottom:776.232000px;}
.y114{bottom:776.766000px;}
.yb9{bottom:780.453000px;}
.y15a{bottom:783.411000px;}
.y55{bottom:784.936500px;}
.y24{bottom:786.310500px;}
.ydd{bottom:786.894000px;}
.y136{bottom:793.231500px;}
.y188{bottom:795.382500px;}
.y113{bottom:800.406000px;}
.yb8{bottom:801.345000px;}
.y159{bottom:804.303000px;}
.y54{bottom:805.827000px;}
.y23{bottom:807.202500px;}
.ydc{bottom:807.784500px;}
.y135{bottom:812.464500px;}
.y187{bottom:814.533000px;}
.yb7{bottom:822.235500px;}
.y53{bottom:826.719000px;}
.y22{bottom:828.093000px;}
.ydb{bottom:828.676500px;}
.y158{bottom:829.678500px;}
.y186{bottom:833.683500px;}
.y112{bottom:835.014000px;}
.yb6{bottom:843.127500px;}
.y52{bottom:847.611000px;}
.y134{bottom:849.568500px;}
.y185{bottom:852.834000px;}
.yda{bottom:854.052000px;}
.y111{bottom:854.247000px;}
.y21{bottom:857.950500px;}
.yb5{bottom:864.019500px;}
.y51{bottom:868.503000px;}
.y133{bottom:870.460500px;}
.y184{bottom:871.984500px;}
.yb4{bottom:884.910000px;}
.y50{bottom:889.393500px;}
.y183{bottom:891.135000px;}
.y110{bottom:891.351000px;}
.y20{bottom:891.565500px;}
.yb3{bottom:905.802000px;}
.y1f{bottom:907.704000px;}
.y4f{bottom:910.285500px;}
.y10f{bottom:912.243000px;}
.y132{bottom:916.726500px;}
.yb2{bottom:926.694000px;}
.y182{bottom:929.436000px;}
.y4e{bottom:931.177500px;}
.y10e{bottom:933.135000px;}
.yb1{bottom:947.584500px;}
.y181{bottom:948.586500px;}
.y1e{bottom:950.314500px;}
.y4d{bottom:952.068000px;}
.y10d{bottom:954.025500px;}
.y180{bottom:967.737000px;}
.yb0{bottom:968.476500px;}
.y1d{bottom:971.206500px;}
.y4c{bottom:972.960000px;}
.y10c{bottom:974.917500px;}
.y1aa{bottom:984.877500px;}
.y17f{bottom:986.887500px;}
.yaf{bottom:989.368500px;}
.y4b{bottom:993.852000px;}
.y10b{bottom:995.809500px;}
.y1a9{bottom:1004.083500px;}
.y17e{bottom:1006.038000px;}
.y1c{bottom:1010.031000px;}
.yae{bottom:1010.260500px;}
.y4a{bottom:1014.742500px;}
.y10a{bottom:1016.700000px;}
.y17d{bottom:1025.188500px;}
.yad{bottom:1031.151000px;}
.y49{bottom:1035.634500px;}
.y1b{bottom:1041.367500px;}
.y109{bottom:1042.075500px;}
.y17c{bottom:1044.339000px;}
.yac{bottom:1052.043000px;}
.y48{bottom:1056.526500px;}
.y17b{bottom:1063.489500px;}
.y1a{bottom:1072.705500px;}
.yab{bottom:1072.935000px;}
.y47{bottom:1077.417000px;}
.y17a{bottom:1082.640000px;}
.yaa{bottom:1093.825500px;}
.y46{bottom:1098.309000px;}
.y179{bottom:1101.790500px;}
.y19{bottom:1104.042000px;}
.ya9{bottom:1114.717500px;}
.y45{bottom:1119.201000px;}
.y178{bottom:1120.941000px;}
.y44{bottom:1140.091500px;}
.y43{bottom:1200.196500px;}
.h10{height:16.817382px;}
.h11{height:21.758318px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h7{height:34.813397px;}
.ha{height:35.052500px;}
.hd{height:38.896243px;}
.he{height:39.165235px;}
.hc{height:39.434227px;}
.hf{height:41.723369px;}
.h6{height:43.217759px;}
.h8{height:43.516637px;}
.h4{height:43.815515px;}
.h12{height:47.474227px;}
.h9{height:51.861658px;}
.hb{height:52.210637px;}
.h5{height:77.792486px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x26{left:55.704000px;}
.x27{left:60.168000px;}
.xb{left:62.541000px;}
.x1f{left:76.417500px;}
.x25{left:84.058500px;}
.x24{left:85.848000px;}
.x13{left:88.878000px;}
.x1e{left:90.229500px;}
.xa{left:97.431000px;}
.x8{left:101.311500px;}
.x18{left:108.439500px;}
.x12{left:115.023000px;}
.x9{left:116.980500px;}
.xd{left:124.531500px;}
.x28{left:200.046000px;}
.x6{left:247.348500px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x29{left:258.336000px;}
.x4{left:281.479500px;}
.x7{left:284.184000px;}
.xc{left:304.824000px;}
.x19{left:310.272000px;}
.xe{left:321.319500px;}
.xf{left:335.302500px;}
.x10{left:348.810000px;}
.x11{left:361.101000px;}
.x1a{left:414.328500px;}
.x1b{left:427.954500px;}
.x1c{left:440.776500px;}
.x1d{left:453.067500px;}
.x14{left:507.823500px;}
.x15{left:521.449500px;}
.x16{left:534.517500px;}
.x17{left:546.808500px;}
.x20{left:571.473000px;}
.x21{left:584.788500px;}
.x22{left:597.264000px;}
.x23{left:609.556500px;}
.x5{left:645.981000px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.728000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls28{letter-spacing:0.000540pt;}
.ls23{letter-spacing:0.001302pt;}
.ls3b{letter-spacing:0.001335pt;}
.ls3c{letter-spacing:0.094933pt;}
.ls22{letter-spacing:0.570745pt;}
.ls20{letter-spacing:0.576078pt;}
.ls21{letter-spacing:0.598340pt;}
.ls3f{letter-spacing:4.643600pt;}
.ls3e{letter-spacing:5.982267pt;}
.ls11{letter-spacing:9.960533pt;}
.lsf{letter-spacing:10.307970pt;}
.lse{letter-spacing:10.361104pt;}
.ls4{letter-spacing:10.626533pt;}
.ls2a{letter-spacing:10.629067pt;}
.ls39{letter-spacing:10.689698pt;}
.lsd{letter-spacing:11.423781pt;}
.ls41{letter-spacing:11.571331pt;}
.ls3d{letter-spacing:11.877968pt;}
.ls3a{letter-spacing:11.919090pt;}
.ls37{letter-spacing:11.954133pt;}
.ls36{letter-spacing:11.959467pt;}
.ls38{letter-spacing:11.988967pt;}
.ls2c{letter-spacing:12.034427pt;}
.ls40{letter-spacing:12.050242pt;}
.ls1f{letter-spacing:12.273923pt;}
.ls32{letter-spacing:12.388169pt;}
.ls35{letter-spacing:12.540550pt;}
.ls34{letter-spacing:12.545992pt;}
.ls1d{letter-spacing:13.017797pt;}
.lsb{letter-spacing:13.070931pt;}
.ls2b{letter-spacing:13.103360pt;}
.lsc{letter-spacing:13.124065pt;}
.ls6{letter-spacing:13.230333pt;}
.ls27{letter-spacing:13.265234pt;}
.ls33{letter-spacing:13.278400pt;}
.ls12{letter-spacing:13.283467pt;}
.ls2f{letter-spacing:13.283733pt;}
.ls2e{letter-spacing:13.284147pt;}
.ls8{letter-spacing:13.336601pt;}
.ls1e{letter-spacing:13.389734pt;}
.ls1a{letter-spacing:13.442868pt;}
.ls2d{letter-spacing:13.454747pt;}
.ls24{letter-spacing:13.470583pt;}
.ls31{letter-spacing:13.479090pt;}
.ls17{letter-spacing:13.496002pt;}
.ls19{letter-spacing:13.549136pt;}
.ls18{letter-spacing:13.761671pt;}
.ls3{letter-spacing:13.814805pt;}
.ls1c{letter-spacing:13.867939pt;}
.ls26{letter-spacing:14.238295pt;}
.ls1b{letter-spacing:14.293010pt;}
.ls16{letter-spacing:14.877483pt;}
.ls13{letter-spacing:15.515089pt;}
.ls15{letter-spacing:15.568223pt;}
.ls25{letter-spacing:15.707576pt;}
.ls2{letter-spacing:15.780758pt;}
.ls14{letter-spacing:16.790302pt;}
.ls10{letter-spacing:16.843436pt;}
.lsa{letter-spacing:17.481042pt;}
.ls7{letter-spacing:18.384318pt;}
.ls29{letter-spacing:19.111498pt;}
.ls9{letter-spacing:19.765798pt;}
.ls30{letter-spacing:19.796465pt;}
.ls1{letter-spacing:25.292137pt;}
.ws4d{word-spacing:-13.283467pt;}
.ws71{word-spacing:-11.955200pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws4{word-spacing:-9.298400pt;}
.wsa9{word-spacing:-3.347434pt;}
.ws3c{word-spacing:-2.975497pt;}
.ws3d{word-spacing:-2.922363pt;}
.ws9d{word-spacing:-2.550426pt;}
.ws80{word-spacing:-2.337890pt;}
.ws6a{word-spacing:-2.178489pt;}
.wsa0{word-spacing:-2.125355pt;}
.ws9f{word-spacing:-2.072221pt;}
.wsa1{word-spacing:-1.965953pt;}
.ws9b{word-spacing:-1.912819pt;}
.ws0{word-spacing:-1.859680pt;}
.ws62{word-spacing:-1.647150pt;}
.wsbe{word-spacing:-1.625907pt;}
.ws66{word-spacing:-1.594016pt;}
.wsa8{word-spacing:-1.540882pt;}
.wsa{word-spacing:-1.487748pt;}
.ws6e{word-spacing:-1.434614pt;}
.ws61{word-spacing:-1.328347pt;}
.ws16{word-spacing:-1.275213pt;}
.wsbf{word-spacing:-1.243341pt;}
.ws68{word-spacing:-1.222079pt;}
.ws1d{word-spacing:-1.115811pt;}
.ws5a{word-spacing:-1.009543pt;}
.wse{word-spacing:-0.956410pt;}
.ws98{word-spacing:-0.903276pt;}
.wsd1{word-spacing:-0.860774pt;}
.ws89{word-spacing:-0.850142pt;}
.ws8b{word-spacing:-0.812954pt;}
.ws9a{word-spacing:-0.743874pt;}
.wsb8{word-spacing:-0.717312pt;}
.ws5c{word-spacing:-0.690740pt;}
.wsb7{word-spacing:-0.669491pt;}
.ws99{word-spacing:-0.665072pt;}
.wsad{word-spacing:-0.573850pt;}
.ws9{word-spacing:-0.531339pt;}
.wscf{word-spacing:-0.526029pt;}
.wsc5{word-spacing:-0.478208pt;}
.ws81{word-spacing:-0.478205pt;}
.wsc3{word-spacing:-0.430387pt;}
.ws17{word-spacing:-0.425071pt;}
.wsd0{word-spacing:-0.382566pt;}
.ws2b{word-spacing:-0.371937pt;}
.wscd{word-spacing:-0.334746pt;}
.ws27{word-spacing:-0.318803pt;}
.ws14{word-spacing:-0.265669pt;}
.ws6f{word-spacing:-0.239104pt;}
.ws28{word-spacing:-0.212535pt;}
.ws70{word-spacing:-0.191283pt;}
.ws88{word-spacing:-0.176821pt;}
.ws3b{word-spacing:-0.159402pt;}
.wsb4{word-spacing:-0.143462pt;}
.wsc{word-spacing:-0.106268pt;}
.wsbc{word-spacing:-0.095642pt;}
.ws7{word-spacing:-0.053134pt;}
.ws72{word-spacing:-0.047821pt;}
.ws87{word-spacing:-0.006791pt;}
.ws1a{word-spacing:-0.000095pt;}
.ws2{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.047821pt;}
.ws13{word-spacing:0.053134pt;}
.ws8a{word-spacing:0.095642pt;}
.wsd{word-spacing:0.106268pt;}
.ws82{word-spacing:0.143462pt;}
.wsf{word-spacing:0.159402pt;}
.ws91{word-spacing:0.181327pt;}
.ws90{word-spacing:0.185390pt;}
.wsae{word-spacing:0.191283pt;}
.ws11{word-spacing:0.212535pt;}
.wsaa{word-spacing:0.239104pt;}
.ws35{word-spacing:0.265669pt;}
.wsc1{word-spacing:0.286925pt;}
.wsb{word-spacing:0.318803pt;}
.wscc{word-spacing:0.334746pt;}
.ws1{word-spacing:0.371148pt;}
.ws67{word-spacing:0.371937pt;}
.ws3{word-spacing:0.375335pt;}
.ws7e{word-spacing:0.425071pt;}
.wsbd{word-spacing:0.430387pt;}
.ws19{word-spacing:0.478205pt;}
.wsc0{word-spacing:0.526029pt;}
.ws50{word-spacing:0.531339pt;}
.ws4f{word-spacing:0.584473pt;}
.ws79{word-spacing:0.599467pt;}
.wsa2{word-spacing:0.637606pt;}
.ws39{word-spacing:0.690740pt;}
.ws3a{word-spacing:0.797008pt;}
.ws57{word-spacing:0.850142pt;}
.ws6b{word-spacing:0.903276pt;}
.ws2a{word-spacing:0.956410pt;}
.wsc2{word-spacing:0.956416pt;}
.wsba{word-spacing:1.004237pt;}
.ws54{word-spacing:1.009543pt;}
.wsbb{word-spacing:1.052058pt;}
.ws5f{word-spacing:1.062677pt;}
.ws92{word-spacing:1.147699pt;}
.ws45{word-spacing:1.168945pt;}
.ws65{word-spacing:1.222079pt;}
.ws7f{word-spacing:1.254416pt;}
.ws1c{word-spacing:1.275213pt;}
.ws18{word-spacing:1.328347pt;}
.ws8{word-spacing:1.381481pt;}
.ws6{word-spacing:1.434614pt;}
.wscb{word-spacing:1.482445pt;}
.ws4b{word-spacing:1.540882pt;}
.wsaf{word-spacing:1.673728pt;}
.ws23{word-spacing:1.700284pt;}
.ws6d{word-spacing:1.753418pt;}
.wsca{word-spacing:1.769370pt;}
.ws24{word-spacing:1.806551pt;}
.wsb9{word-spacing:1.817190pt;}
.ws4e{word-spacing:1.912819pt;}
.ws38{word-spacing:2.019087pt;}
.ws3e{word-spacing:2.072221pt;}
.ws1f{word-spacing:2.231622pt;}
.ws48{word-spacing:2.284756pt;}
.wsa3{word-spacing:2.337890pt;}
.wsb5{word-spacing:2.343219pt;}
.ws6c{word-spacing:2.391024pt;}
.ws15{word-spacing:2.444158pt;}
.ws25{word-spacing:2.497292pt;}
.ws5{word-spacing:2.550432pt;}
.ws52{word-spacing:2.656693pt;}
.ws40{word-spacing:2.762961pt;}
.ws7c{word-spacing:2.805475pt;}
.ws69{word-spacing:2.816095pt;}
.ws7d{word-spacing:2.847982pt;}
.wsc8{word-spacing:2.858752pt;}
.wsb0{word-spacing:2.862524pt;}
.wsb2{word-spacing:2.863027pt;}
.wsc4{word-spacing:2.863573pt;}
.wsb6{word-spacing:2.863863pt;}
.wsc9{word-spacing:2.864188pt;}
.wsd2{word-spacing:2.865860pt;}
.wsab{word-spacing:2.866509pt;}
.ws47{word-spacing:2.869229pt;}
.ws73{word-spacing:2.869248pt;}
.ws41{word-spacing:2.975497pt;}
.wsd4{word-spacing:3.108352pt;}
.ws34{word-spacing:3.134898pt;}
.wsa6{word-spacing:3.294300pt;}
.ws26{word-spacing:3.347434pt;}
.wsb3{word-spacing:3.347456pt;}
.ws5e{word-spacing:3.400567pt;}
.wsce{word-spacing:3.443098pt;}
.ws51{word-spacing:3.453701pt;}
.ws10{word-spacing:3.464786pt;}
.wsa7{word-spacing:3.506835pt;}
.ws42{word-spacing:3.559969pt;}
.ws9e{word-spacing:3.613103pt;}
.ws3f{word-spacing:3.666237pt;}
.ws32{word-spacing:3.772505pt;}
.ws12{word-spacing:3.825664pt;}
.ws29{word-spacing:3.878772pt;}
.ws96{word-spacing:4.038174pt;}
.ws56{word-spacing:4.144442pt;}
.ws2e{word-spacing:4.197575pt;}
.ws2f{word-spacing:4.250709pt;}
.ws64{word-spacing:4.303843pt;}
.wsd3{word-spacing:4.303872pt;}
.ws44{word-spacing:4.356977pt;}
.ws55{word-spacing:4.569513pt;}
.wsc6{word-spacing:4.590797pt;}
.ws5d{word-spacing:4.835182pt;}
.wsa5{word-spacing:4.941450pt;}
.ws1e{word-spacing:5.100851pt;}
.ws9c{word-spacing:5.207119pt;}
.ws22{word-spacing:5.260253pt;}
.ws46{word-spacing:5.313387pt;}
.ws33{word-spacing:5.419654pt;}
.ws60{word-spacing:5.472788pt;}
.ws49{word-spacing:5.525922pt;}
.ws4a{word-spacing:5.579056pt;}
.ws4c{word-spacing:5.791591pt;}
.ws53{word-spacing:5.844725pt;}
.wsc7{word-spacing:5.881958pt;}
.ws59{word-spacing:5.897859pt;}
.wsac{word-spacing:5.929779pt;}
.ws31{word-spacing:6.004127pt;}
.ws20{word-spacing:6.110395pt;}
.ws97{word-spacing:6.163529pt;}
.ws63{word-spacing:6.216662pt;}
.ws30{word-spacing:6.322930pt;}
.ws2d{word-spacing:6.482332pt;}
.ws2c{word-spacing:6.535466pt;}
.ws5b{word-spacing:6.641733pt;}
.ws21{word-spacing:6.854269pt;}
.ws36{word-spacing:6.907403pt;}
.ws58{word-spacing:7.438741pt;}
.wsa4{word-spacing:7.545009pt;}
.ws37{word-spacing:8.713954pt;}
.ws43{word-spacing:14.399278pt;}
.ws77{word-spacing:138.325333pt;}
.ws86{word-spacing:146.324011pt;}
.ws7a{word-spacing:152.835277pt;}
.ws76{word-spacing:153.423044pt;}
.ws8e{word-spacing:158.278733pt;}
.ws84{word-spacing:158.282573pt;}
.ws8f{word-spacing:158.284151pt;}
.ws94{word-spacing:158.301150pt;}
.ws8c{word-spacing:172.769399pt;}
.ws74{word-spacing:172.776550pt;}
.ws78{word-spacing:247.889929pt;}
.ws95{word-spacing:272.958362pt;}
.ws93{word-spacing:277.765009pt;}
.ws85{word-spacing:287.820595pt;}
.ws8d{word-spacing:302.309333pt;}
.ws75{word-spacing:303.375753pt;}
.ws83{word-spacing:365.925632pt;}
.ws7b{word-spacing:399.736243pt;}
._1c{margin-left:-24.600980pt;}
._1e{margin-left:-23.697705pt;}
._39{margin-left:-22.502313pt;}
._38{margin-left:-21.604347pt;}
._37{margin-left:-20.493839pt;}
._4{margin-left:-7.077478pt;}
._8{margin-left:-5.897859pt;}
._d{margin-left:-4.558890pt;}
._1{margin-left:-3.421811pt;}
._9{margin-left:-2.454824pt;}
._3{margin-left:-1.338970pt;}
._34{width:1.271848pt;}
._3c{width:2.582323pt;}
._1b{width:4.569513pt;}
._1d{width:6.110395pt;}
._0{width:9.670336pt;}
._3a{width:10.563111pt;}
._3b{width:12.018984pt;}
._18{width:13.081610pt;}
._19{width:13.984873pt;}
._22{width:15.100641pt;}
._b{width:16.152695pt;}
._12{width:17.587310pt;}
._2{width:19.340672pt;}
._a{width:21.041011pt;}
._13{width:22.369358pt;}
._21{width:23.389524pt;}
._c{width:24.388445pt;}
._1a{width:26.258753pt;}
._14{width:27.852825pt;}
._5{width:29.648896pt;}
._10{width:32.145989pt;}
._16{width:33.208667pt;}
._1f{width:34.696415pt;}
._35{width:35.599691pt;}
._15{width:36.502966pt;}
._11{width:37.565644pt;}
._17{width:38.479586pt;}
._6{width:48.381607pt;}
._7{width:61.661223pt;}
._20{width:83.154501pt;}
._25{width:103.579853pt;}
._30{width:107.596800pt;}
._24{width:123.375374pt;}
._26{width:126.901558pt;}
._31{width:130.870685pt;}
._27{width:153.471150pt;}
._2f{width:172.824371pt;}
._2d{width:184.779571pt;}
._23{width:245.145322pt;}
._2b{width:260.766822pt;}
._29{width:280.708096pt;}
._2a{width:294.337024pt;}
._2e{width:305.017026pt;}
._2c{width:334.697779pt;}
._32{width:373.002240pt;}
._28{width:403.368448pt;}
._33{width:431.056691pt;}
._e{width:1702.819562pt;}
._36{width:2315.304895pt;}
._f{width:2336.558229pt;}
.fs9{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs7{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:40.818667pt;}
.y41{bottom:88.640000pt;}
.y18{bottom:89.120000pt;}
.y74{bottom:98.970667pt;}
.yd9{bottom:99.488000pt;}
.yfc{bottom:99.873333pt;}
.y177{bottom:101.921333pt;}
.y157{bottom:103.473333pt;}
.y17{bottom:105.020000pt;}
.y40{bottom:107.209333pt;}
.y1a8{bottom:111.210667pt;}
.y154{bottom:113.444000pt;}
.y73{bottom:117.541333pt;}
.yd8{bottom:118.058667pt;}
.yfb{bottom:118.442667pt;}
.y176{bottom:118.944000pt;}
.y16{bottom:120.920000pt;}
.y156{bottom:122.042667pt;}
.y93{bottom:123.782667pt;}
.y131{bottom:124.518667pt;}
.y3f{bottom:125.780000pt;}
.y1a7{bottom:128.233333pt;}
.y153{bottom:132.014667pt;}
.y175{bottom:135.966667pt;}
.y72{bottom:136.112000pt;}
.yd7{bottom:136.628000pt;}
.y15{bottom:136.821333pt;}
.yfa{bottom:137.013333pt;}
.y155{bottom:140.613333pt;}
.y92{bottom:142.353333pt;}
.y130{bottom:143.925333pt;}
.y3e{bottom:144.350667pt;}
.y1a6{bottom:145.256000pt;}
.y152{bottom:150.584000pt;}
.y14{bottom:152.721333pt;}
.y174{bottom:152.989333pt;}
.y71{bottom:154.681333pt;}
.yd6{bottom:155.198667pt;}
.yf9{bottom:155.584000pt;}
.y12f{bottom:158.537333pt;}
.ya8{bottom:159.184000pt;}
.y91{bottom:160.924000pt;}
.y1a5{bottom:162.278667pt;}
.y3d{bottom:162.920000pt;}
.y13{bottom:168.621333pt;}
.y151{bottom:169.154667pt;}
.y12e{bottom:173.149333pt;}
.y70{bottom:173.252000pt;}
.yd5{bottom:173.769333pt;}
.y173{bottom:173.997333pt;}
.yf8{bottom:174.153333pt;}
.ya7{bottom:177.753333pt;}
.y1a4{bottom:179.301333pt;}
.y90{bottom:179.493333pt;}
.y3c{bottom:181.490667pt;}
.y12{bottom:184.521333pt;}
.y150{bottom:187.725333pt;}
.y12d{bottom:187.761333pt;}
.y6f{bottom:191.822667pt;}
.yd4{bottom:192.338667pt;}
.yf7{bottom:192.724000pt;}
.ya6{bottom:196.324000pt;}
.y8f{bottom:198.064000pt;}
.y3b{bottom:200.061333pt;}
.y11{bottom:200.422667pt;}
.y12c{bottom:202.373333pt;}
.y14f{bottom:206.294667pt;}
.y172{bottom:208.508000pt;}
.y6e{bottom:210.392000pt;}
.yd3{bottom:210.909333pt;}
.yf6{bottom:211.294667pt;}
.y1a3{bottom:213.346667pt;}
.ya5{bottom:214.894667pt;}
.y8e{bottom:216.634667pt;}
.y12b{bottom:216.985333pt;}
.y3a{bottom:218.632000pt;}
.y10{bottom:224.293333pt;}
.y14e{bottom:224.865333pt;}
.y6d{bottom:228.962667pt;}
.yd2{bottom:229.480000pt;}
.yf5{bottom:229.864000pt;}
.y1a2{bottom:230.369333pt;}
.y12a{bottom:231.597333pt;}
.ya4{bottom:233.464000pt;}
.y171{bottom:233.809333pt;}
.y8d{bottom:235.205333pt;}
.y39{bottom:237.201333pt;}
.yf{bottom:240.193333pt;}
.y14d{bottom:243.436000pt;}
.y1a1{bottom:247.392000pt;}
.y6c{bottom:247.533333pt;}
.yd1{bottom:248.049333pt;}
.yf4{bottom:248.434667pt;}
.ya3{bottom:252.034667pt;}
.y129{bottom:252.610667pt;}
.y8c{bottom:253.774667pt;}
.y38{bottom:255.772000pt;}
.ye{bottom:256.093333pt;}
.y170{bottom:259.112000pt;}
.y1a0{bottom:264.414667pt;}
.y14c{bottom:265.990667pt;}
.y6b{bottom:266.102667pt;}
.yd0{bottom:266.620000pt;}
.yf3{bottom:267.005333pt;}
.ya2{bottom:270.605333pt;}
.yd{bottom:271.994667pt;}
.y8b{bottom:272.345333pt;}
.y37{bottom:274.342667pt;}
.y19f{bottom:281.437333pt;}
.y128{bottom:283.373333pt;}
.y16f{bottom:284.414667pt;}
.y6a{bottom:284.673333pt;}
.ycf{bottom:285.190667pt;}
.yf2{bottom:285.576000pt;}
.yc{bottom:287.894667pt;}
.ya1{bottom:289.176000pt;}
.y8a{bottom:290.916000pt;}
.y36{bottom:292.912000pt;}
.y19e{bottom:298.460000pt;}
.y14b{bottom:300.501333pt;}
.y16e{bottom:301.746667pt;}
.y69{bottom:303.244000pt;}
.yce{bottom:303.760000pt;}
.yb{bottom:303.794667pt;}
.yf1{bottom:304.145333pt;}
.ya0{bottom:307.745333pt;}
.y89{bottom:309.485333pt;}
.y1ad{bottom:311.278667pt;}
.y35{bottom:311.482667pt;}
.y127{bottom:312.894667pt;}
.y19d{bottom:315.482667pt;}
.y14a{bottom:319.072000pt;}
.y16d{bottom:319.078667pt;}
.ya{bottom:319.696000pt;}
.y68{bottom:321.814667pt;}
.ycd{bottom:322.330667pt;}
.yf0{bottom:322.716000pt;}
.y9f{bottom:326.316000pt;}
.y88{bottom:328.056000pt;}
.y1ac{bottom:328.301333pt;}
.y34{bottom:330.053333pt;}
.y126{bottom:331.465333pt;}
.y19c{bottom:332.506667pt;}
.y9{bottom:335.596000pt;}
.y149{bottom:337.641333pt;}
.y67{bottom:340.384000pt;}
.ycc{bottom:340.901333pt;}
.yef{bottom:341.286667pt;}
.y16c{bottom:344.381333pt;}
.y87{bottom:344.694667pt;}
.y9e{bottom:344.886667pt;}
.y1ab{bottom:345.324000pt;}
.y86{bottom:346.626667pt;}
.y33{bottom:348.622667pt;}
.y108{bottom:348.680000pt;}
.y19b{bottom:349.529333pt;}
.y125{bottom:350.034667pt;}
.y8{bottom:351.496000pt;}
.y148{bottom:356.212000pt;}
.y66{bottom:358.954667pt;}
.ycb{bottom:359.472000pt;}
.yee{bottom:359.856000pt;}
.y107{bottom:361.300000pt;}
.y9d{bottom:363.456000pt;}
.y85{bottom:365.196000pt;}
.y19a{bottom:366.552000pt;}
.y7{bottom:367.397333pt;}
.y124{bottom:368.605333pt;}
.y16b{bottom:369.684000pt;}
.y32{bottom:371.178667pt;}
.y147{bottom:374.782667pt;}
.y65{bottom:377.525333pt;}
.yca{bottom:378.041333pt;}
.yed{bottom:378.426667pt;}
.y106{bottom:380.706667pt;}
.y9c{bottom:382.026667pt;}
.y199{bottom:383.574667pt;}
.y84{bottom:383.766667pt;}
.y16a{bottom:387.016000pt;}
.y6{bottom:388.610667pt;}
.y123{bottom:391.161333pt;}
.y146{bottom:393.352000pt;}
.y105{bottom:395.318667pt;}
.y64{bottom:396.094667pt;}
.yc9{bottom:396.612000pt;}
.y9b{bottom:400.597333pt;}
.yec{bottom:400.981333pt;}
.y83{bottom:402.337333pt;}
.y169{bottom:404.348000pt;}
.y5{bottom:404.510667pt;}
.y104{bottom:409.930667pt;}
.y145{bottom:411.922667pt;}
.y63{bottom:414.665333pt;}
.yc8{bottom:415.182667pt;}
.y198{bottom:417.620000pt;}
.y9a{bottom:419.166667pt;}
.y4{bottom:420.412000pt;}
.y82{bottom:420.906667pt;}
.y168{bottom:421.680000pt;}
.y122{bottom:422.576000pt;}
.y103{bottom:424.542667pt;}
.y144{bottom:430.493333pt;}
.y62{bottom:433.236000pt;}
.yc7{bottom:433.752000pt;}
.y197{bottom:434.642667pt;}
.yeb{bottom:435.492000pt;}
.y3{bottom:436.312000pt;}
.y99{bottom:437.737333pt;}
.y81{bottom:439.477333pt;}
.y121{bottom:441.146667pt;}
.y31{bottom:441.589333pt;}
.y102{bottom:445.556000pt;}
.y143{bottom:449.064000pt;}
.y196{bottom:451.665333pt;}
.y61{bottom:451.805333pt;}
.yc6{bottom:452.322667pt;}
.yea{bottom:454.062667pt;}
.y167{bottom:454.953333pt;}
.y98{bottom:456.308000pt;}
.y2{bottom:457.525333pt;}
.y80{bottom:458.048000pt;}
.y120{bottom:459.717333pt;}
.y30{bottom:460.158667pt;}
.y142{bottom:467.633333pt;}
.y195{bottom:468.688000pt;}
.y60{bottom:470.376000pt;}
.yc5{bottom:470.893333pt;}
.ye9{bottom:472.633333pt;}
.y1{bottom:473.426667pt;}
.y166{bottom:473.522667pt;}
.y97{bottom:474.877333pt;}
.y101{bottom:476.318667pt;}
.y7f{bottom:476.617333pt;}
.y11f{bottom:478.286667pt;}
.y194{bottom:485.710667pt;}
.y141{bottom:486.204000pt;}
.y5f{bottom:488.946667pt;}
.yc4{bottom:489.462667pt;}
.ye8{bottom:491.202667pt;}
.y165{bottom:492.093333pt;}
.y100{bottom:493.414667pt;}
.y96{bottom:493.448000pt;}
.y2f{bottom:494.669333pt;}
.y7e{bottom:495.188000pt;}
.y11e{bottom:496.857333pt;}
.y193{bottom:502.733333pt;}
.y140{bottom:504.774667pt;}
.y5e{bottom:507.516000pt;}
.yc3{bottom:508.033333pt;}
.ye7{bottom:509.773333pt;}
.y164{bottom:510.664000pt;}
.y95{bottom:512.018667pt;}
.y2e{bottom:513.240000pt;}
.y11d{bottom:515.428000pt;}
.y7d{bottom:517.744000pt;}
.y192{bottom:519.756000pt;}
.y13f{bottom:523.344000pt;}
.y5d{bottom:526.086667pt;}
.yc2{bottom:526.604000pt;}
.ye6{bottom:528.344000pt;}
.y163{bottom:529.233333pt;}
.y94{bottom:530.589333pt;}
.y2d{bottom:531.810667pt;}
.y11c{bottom:533.997333pt;}
.y191{bottom:536.778667pt;}
.y5c{bottom:544.657333pt;}
.yc1{bottom:545.173333pt;}
.ye5{bottom:546.913333pt;}
.y162{bottom:547.804000pt;}
.y7c{bottom:549.158667pt;}
.y2c{bottom:550.380000pt;}
.y11b{bottom:552.568000pt;}
.y190{bottom:553.801333pt;}
.y13e{bottom:560.852000pt;}
.y5b{bottom:563.228000pt;}
.yc0{bottom:563.744000pt;}
.y161{bottom:566.374667pt;}
.y7b{bottom:567.729333pt;}
.y2b{bottom:568.950667pt;}
.ye4{bottom:569.469333pt;}
.y18f{bottom:570.824000pt;}
.y11a{bottom:571.138667pt;}
.y13d{bottom:580.258667pt;}
.y5a{bottom:581.797333pt;}
.ybf{bottom:582.314667pt;}
.y160{bottom:584.944000pt;}
.y7a{bottom:586.300000pt;}
.y2a{bottom:587.521333pt;}
.y18e{bottom:587.846667pt;}
.ye3{bottom:588.040000pt;}
.y119{bottom:589.708000pt;}
.y13c{bottom:594.870667pt;}
.y59{bottom:600.368000pt;}
.ybe{bottom:600.885333pt;}
.y15f{bottom:603.514667pt;}
.y79{bottom:604.869333pt;}
.y29{bottom:606.090667pt;}
.ye2{bottom:606.609333pt;}
.y13b{bottom:609.481333pt;}
.y58{bottom:618.938667pt;}
.ybd{bottom:619.454667pt;}
.y18d{bottom:621.892000pt;}
.y15e{bottom:622.085333pt;}
.y78{bottom:623.440000pt;}
.y13a{bottom:624.093333pt;}
.y28{bottom:624.661333pt;}
.ye1{bottom:625.180000pt;}
.y118{bottom:627.216000pt;}
.yff{bottom:637.508000pt;}
.ybc{bottom:638.025333pt;}
.y139{bottom:638.705333pt;}
.y18c{bottom:638.914667pt;}
.y15d{bottom:640.654667pt;}
.y57{bottom:641.493333pt;}
.y77{bottom:642.010667pt;}
.y27{bottom:643.232000pt;}
.ye0{bottom:643.750667pt;}
.y117{bottom:646.622667pt;}
.y138{bottom:653.317333pt;}
.y18b{bottom:655.937333pt;}
.ybb{bottom:656.596000pt;}
.y15c{bottom:659.225333pt;}
.yfe{bottom:660.064000pt;}
.y76{bottom:660.580000pt;}
.y116{bottom:661.234667pt;}
.y26{bottom:661.801333pt;}
.ydf{bottom:662.320000pt;}
.y56{bottom:663.210667pt;}
.y18a{bottom:672.961333pt;}
.y137{bottom:674.332000pt;}
.yba{bottom:675.165333pt;}
.y115{bottom:675.846667pt;}
.y15b{bottom:677.796000pt;}
.y75{bottom:679.150667pt;}
.y25{bottom:680.372000pt;}
.yde{bottom:680.890667pt;}
.yfd{bottom:681.781333pt;}
.y189{bottom:689.984000pt;}
.y114{bottom:690.458667pt;}
.yb9{bottom:693.736000pt;}
.y15a{bottom:696.365333pt;}
.y55{bottom:697.721333pt;}
.y24{bottom:698.942667pt;}
.ydd{bottom:699.461333pt;}
.y136{bottom:705.094667pt;}
.y188{bottom:707.006667pt;}
.y113{bottom:711.472000pt;}
.yb8{bottom:712.306667pt;}
.y159{bottom:714.936000pt;}
.y54{bottom:716.290667pt;}
.y23{bottom:717.513333pt;}
.ydc{bottom:718.030667pt;}
.y135{bottom:722.190667pt;}
.y187{bottom:724.029333pt;}
.yb7{bottom:730.876000pt;}
.y53{bottom:734.861333pt;}
.y22{bottom:736.082667pt;}
.ydb{bottom:736.601333pt;}
.y158{bottom:737.492000pt;}
.y186{bottom:741.052000pt;}
.y112{bottom:742.234667pt;}
.yb6{bottom:749.446667pt;}
.y52{bottom:753.432000pt;}
.y134{bottom:755.172000pt;}
.y185{bottom:758.074667pt;}
.yda{bottom:759.157333pt;}
.y111{bottom:759.330667pt;}
.y21{bottom:762.622667pt;}
.yb5{bottom:768.017333pt;}
.y51{bottom:772.002667pt;}
.y133{bottom:773.742667pt;}
.y184{bottom:775.097333pt;}
.yb4{bottom:786.586667pt;}
.y50{bottom:790.572000pt;}
.y183{bottom:792.120000pt;}
.y110{bottom:792.312000pt;}
.y20{bottom:792.502667pt;}
.yb3{bottom:805.157333pt;}
.y1f{bottom:806.848000pt;}
.y4f{bottom:809.142667pt;}
.y10f{bottom:810.882667pt;}
.y132{bottom:814.868000pt;}
.yb2{bottom:823.728000pt;}
.y182{bottom:826.165333pt;}
.y4e{bottom:827.713333pt;}
.y10e{bottom:829.453333pt;}
.yb1{bottom:842.297333pt;}
.y181{bottom:843.188000pt;}
.y1e{bottom:844.724000pt;}
.y4d{bottom:846.282667pt;}
.y10d{bottom:848.022667pt;}
.y180{bottom:860.210667pt;}
.yb0{bottom:860.868000pt;}
.y1d{bottom:863.294667pt;}
.y4c{bottom:864.853333pt;}
.y10c{bottom:866.593333pt;}
.y1aa{bottom:875.446667pt;}
.y17f{bottom:877.233333pt;}
.yaf{bottom:879.438667pt;}
.y4b{bottom:883.424000pt;}
.y10b{bottom:885.164000pt;}
.y1a9{bottom:892.518667pt;}
.y17e{bottom:894.256000pt;}
.y1c{bottom:897.805333pt;}
.yae{bottom:898.009333pt;}
.y4a{bottom:901.993333pt;}
.y10a{bottom:903.733333pt;}
.y17d{bottom:911.278667pt;}
.yad{bottom:916.578667pt;}
.y49{bottom:920.564000pt;}
.y1b{bottom:925.660000pt;}
.y109{bottom:926.289333pt;}
.y17c{bottom:928.301333pt;}
.yac{bottom:935.149333pt;}
.y48{bottom:939.134667pt;}
.y17b{bottom:945.324000pt;}
.y1a{bottom:953.516000pt;}
.yab{bottom:953.720000pt;}
.y47{bottom:957.704000pt;}
.y17a{bottom:962.346667pt;}
.yaa{bottom:972.289333pt;}
.y46{bottom:976.274667pt;}
.y179{bottom:979.369333pt;}
.y19{bottom:981.370667pt;}
.ya9{bottom:990.860000pt;}
.y45{bottom:994.845333pt;}
.y178{bottom:996.392000pt;}
.y44{bottom:1013.414667pt;}
.y43{bottom:1066.841333pt;}
.h10{height:14.948784pt;}
.h11{height:19.340727pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h7{height:30.945242pt;}
.ha{height:31.157778pt;}
.hd{height:34.574438pt;}
.he{height:34.813542pt;}
.hc{height:35.052646pt;}
.hf{height:37.087439pt;}
.h6{height:38.415786pt;}
.h8{height:38.681455pt;}
.h4{height:38.947124pt;}
.h12{height:42.199313pt;}
.h9{height:46.099251pt;}
.hb{height:46.409455pt;}
.h5{height:69.148877pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x26{left:49.514667pt;}
.x27{left:53.482667pt;}
.xb{left:55.592000pt;}
.x1f{left:67.926667pt;}
.x25{left:74.718667pt;}
.x24{left:76.309333pt;}
.x13{left:79.002667pt;}
.x1e{left:80.204000pt;}
.xa{left:86.605333pt;}
.x8{left:90.054667pt;}
.x18{left:96.390667pt;}
.x12{left:102.242667pt;}
.x9{left:103.982667pt;}
.xd{left:110.694667pt;}
.x28{left:177.818667pt;}
.x6{left:219.865333pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x29{left:229.632000pt;}
.x4{left:250.204000pt;}
.x7{left:252.608000pt;}
.xc{left:270.954667pt;}
.x19{left:275.797333pt;}
.xe{left:285.617333pt;}
.xf{left:298.046667pt;}
.x10{left:310.053333pt;}
.x11{left:320.978667pt;}
.x1a{left:368.292000pt;}
.x1b{left:380.404000pt;}
.x1c{left:391.801333pt;}
.x1d{left:402.726667pt;}
.x14{left:451.398667pt;}
.x15{left:463.510667pt;}
.x16{left:475.126667pt;}
.x17{left:486.052000pt;}
.x20{left:507.976000pt;}
.x21{left:519.812000pt;}
.x22{left:530.901333pt;}
.x23{left:541.828000pt;}
.x5{left:574.205333pt;}
}




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