
    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_0b3dfc9b9518cf5bdcc601b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_285075346ac26243fe8f2992.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.114000;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_61ad5d50b4c93a3c9986765f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.387000;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_8870c815484b3363fb687162.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.889000;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_1e2ccdf5de43313a3c521ad5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.114000;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_8a0835b9a7fbaa75f7c9fc09.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960000;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_9126aef244f088efa04ba361.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.775000;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_7876131537e720a1c1b3cc76.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920000;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_3dba5c3f468ff7180f3932a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.796000;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;}
.m13{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{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);}
.m1a{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.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);}
.m19{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);}
.m17{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);}
.m24{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);}
.m14{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);}
.m22{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);}
.m6{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);}
.m1f{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);}
.m7{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);}
.m11{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);}
.ma{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1c{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);}
.md{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.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);}
.m1e{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);}
.m21{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);}
.m26{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);}
.m9{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);}
.m1b{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);}
.m3{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);}
.mc{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);}
.m4{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);}
.m16{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);}
.mb{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);}
.m23{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);}
.mf{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);}
.me{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);}
.m8{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);}
.m20{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);}
.m25{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);}
.m5{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);}
.m1d{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);}
.m15{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);}
.v2{vertical-align:-26.040000px;}
.v4{vertical-align:-17.358000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:21.696000px;}
.v1{vertical-align:26.040000px;}
.v6{vertical-align:35.868000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000017px;}
.ls16{letter-spacing:0.001183px;}
.ls19{letter-spacing:0.005760px;}
.ls2{letter-spacing:2.984700px;}
.ls8{letter-spacing:2.985900px;}
.ls1{letter-spacing:2.990700px;}
.ls3{letter-spacing:2.991900px;}
.ls0{letter-spacing:5.110175px;}
.ls18{letter-spacing:9.964200px;}
.ls17{letter-spacing:12.951900px;}
.ls1b{letter-spacing:12.957900px;}
.ls1c{letter-spacing:13.282200px;}
.ls1d{letter-spacing:13.284562px;}
.ls6{letter-spacing:15.294208px;}
.ls5{letter-spacing:15.634363px;}
.ls1a{letter-spacing:17.927527px;}
.ls1e{letter-spacing:17.931900px;}
.ls15{letter-spacing:17.961900px;}
.lsc{letter-spacing:153.453900px;}
.ls9{letter-spacing:169.077900px;}
.lsb{letter-spacing:173.391900px;}
.lsa{letter-spacing:185.691900px;}
.lse{letter-spacing:224.829900px;}
.ls12{letter-spacing:231.465900px;}
.ls14{letter-spacing:233.139900px;}
.ls10{letter-spacing:235.377900px;}
.lsd{letter-spacing:242.001900px;}
.ls11{letter-spacing:248.637900px;}
.ls13{letter-spacing:250.311900px;}
.lsf{letter-spacing:252.555900px;}
.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;}
}
.ws29{word-spacing:-59.775840px;}
.ws2b{word-spacing:-44.891656px;}
.ws2c{word-spacing:-44.833298px;}
.ws2e{word-spacing:-44.832110px;}
.ws30{word-spacing:-44.831880px;}
.ws31{word-spacing:-40.348710px;}
.wsf{word-spacing:-29.887800px;}
.ws9f{word-spacing:-26.899200px;}
.ws2{word-spacing:-26.301300px;}
.ws2a{word-spacing:-23.911658px;}
.ws1b{word-spacing:-23.910300px;}
.ws58{word-spacing:-19.725948px;}
.ws7{word-spacing:-19.666172px;}
.ws1c{word-spacing:-19.606397px;}
.ws7f{word-spacing:-19.546621px;}
.ws62{word-spacing:-19.427070px;}
.ws63{word-spacing:-19.367294px;}
.ws47{word-spacing:-19.068416px;}
.ws7c{word-spacing:-18.649987px;}
.ws59{word-spacing:-18.351109px;}
.ws51{word-spacing:-18.291334px;}
.ws43{word-spacing:-18.112007px;}
.ws53{word-spacing:-17.992456px;}
.ws1{word-spacing:-17.932800px;}
.ws6b{word-spacing:-17.932680px;}
.ws6e{word-spacing:-17.872904px;}
.ws91{word-spacing:-17.813129px;}
.ws9{word-spacing:-17.753353px;}
.wsc{word-spacing:-17.693578px;}
.ws85{word-spacing:-17.633802px;}
.ws1f{word-spacing:-17.574026px;}
.ws48{word-spacing:-17.394700px;}
.ws8e{word-spacing:-17.334924px;}
.wsab{word-spacing:-17.323085px;}
.ws8d{word-spacing:-17.215373px;}
.ws77{word-spacing:-17.155597px;}
.ws5a{word-spacing:-17.036046px;}
.ws34{word-spacing:-16.976270px;}
.ws4b{word-spacing:-16.916495px;}
.ws52{word-spacing:-16.856719px;}
.ws55{word-spacing:-16.796944px;}
.ws68{word-spacing:-16.737168px;}
.wsa4{word-spacing:-16.731302px;}
.ws86{word-spacing:-16.498066px;}
.ws4e{word-spacing:-16.438290px;}
.ws4f{word-spacing:-16.378514px;}
.ws88{word-spacing:-16.318739px;}
.ws7a{word-spacing:-16.258963px;}
.ws24{word-spacing:-16.199188px;}
.ws71{word-spacing:-16.079636px;}
.ws67{word-spacing:-16.019861px;}
.ws95{word-spacing:-15.960085px;}
.ws54{word-spacing:-15.780758px;}
.ws33{word-spacing:-15.720983px;}
.ws75{word-spacing:-15.661207px;}
.ws90{word-spacing:-15.601432px;}
.ws1d{word-spacing:-15.541656px;}
.ws8a{word-spacing:-15.481880px;}
.ws60{word-spacing:-15.422105px;}
.ws79{word-spacing:-15.362329px;}
.ws4a{word-spacing:-15.302554px;}
.ws42{word-spacing:-15.242778px;}
.wse{word-spacing:-15.183002px;}
.wsaf{word-spacing:-15.171149px;}
.wsd{word-spacing:-15.123227px;}
.ws13{word-spacing:-15.063451px;}
.wsb{word-spacing:-15.003676px;}
.ws8{word-spacing:-14.943900px;}
.ws6{word-spacing:-14.884124px;}
.ws12{word-spacing:-14.824349px;}
.ws11{word-spacing:-14.764573px;}
.ws10{word-spacing:-14.704798px;}
.ws44{word-spacing:-14.645022px;}
.ws23{word-spacing:-14.585246px;}
.ws6c{word-spacing:-14.525471px;}
.ws78{word-spacing:-14.405920px;}
.ws28{word-spacing:-14.286368px;}
.ws1e{word-spacing:-14.166817px;}
.ws27{word-spacing:-14.107042px;}
.ws5d{word-spacing:-14.047266px;}
.ws7d{word-spacing:-13.927715px;}
.wsaa{word-spacing:-13.879987px;}
.ws82{word-spacing:-13.867939px;}
.wsae{word-spacing:-13.772390px;}
.ws19{word-spacing:-13.748388px;}
.wsa7{word-spacing:-13.718592px;}
.ws87{word-spacing:-13.688612px;}
.wsa1{word-spacing:-13.673539px;}
.wsa3{word-spacing:-13.664794px;}
.ws7e{word-spacing:-13.628837px;}
.ws94{word-spacing:-13.569061px;}
.wsa0{word-spacing:-13.557197px;}
.ws96{word-spacing:-13.509286px;}
.wsa9{word-spacing:-13.449600px;}
.ws69{word-spacing:-13.389734px;}
.ws4c{word-spacing:-13.329959px;}
.wsa5{word-spacing:-13.288205px;}
.ws8b{word-spacing:-13.270183px;}
.wsb2{word-spacing:-13.234406px;}
.ws4{word-spacing:-13.150650px;}
.ws49{word-spacing:-13.090856px;}
.ws5b{word-spacing:-12.971305px;}
.ws5c{word-spacing:-12.911530px;}
.wsb4{word-spacing:-12.857818px;}
.ws73{word-spacing:-12.851754px;}
.ws64{word-spacing:-12.672427px;}
.ws45{word-spacing:-12.612652px;}
.ws26{word-spacing:-12.552876px;}
.ws4d{word-spacing:-12.493100px;}
.ws21{word-spacing:-12.433325px;}
.ws93{word-spacing:-12.373549px;}
.ws5e{word-spacing:-12.253998px;}
.ws99{word-spacing:-12.194222px;}
.ws89{word-spacing:-12.134447px;}
.ws9b{word-spacing:-11.955120px;}
.ws70{word-spacing:-11.895344px;}
.wsad{word-spacing:-11.781850px;}
.ws17{word-spacing:-11.775793px;}
.ws1a{word-spacing:-11.716018px;}
.wsa{word-spacing:-11.656242px;}
.wsb0{word-spacing:-11.512858px;}
.ws8c{word-spacing:-11.476915px;}
.wsac{word-spacing:-11.459059px;}
.ws76{word-spacing:-11.417140px;}
.ws35{word-spacing:-11.357364px;}
.ws84{word-spacing:-11.237813px;}
.ws66{word-spacing:-11.118262px;}
.ws36{word-spacing:-11.058486px;}
.ws16{word-spacing:-10.998710px;}
.ws6f{word-spacing:-10.699832px;}
.ws57{word-spacing:-10.640057px;}
.ws97{word-spacing:-10.580281px;}
.ws25{word-spacing:-10.520506px;}
.ws46{word-spacing:-10.460730px;}
.ws61{word-spacing:-10.341179px;}
.ws92{word-spacing:-10.281403px;}
.ws98{word-spacing:-10.221628px;}
.ws5f{word-spacing:-10.102076px;}
.wsb3{word-spacing:-10.060301px;}
.ws72{word-spacing:-10.042301px;}
.ws50{word-spacing:-9.922750px;}
.ws6d{word-spacing:-9.862974px;}
.ws9d{word-spacing:-9.845107px;}
.ws8f{word-spacing:-9.743423px;}
.wsa6{word-spacing:-9.683712px;}
.ws65{word-spacing:-9.564096px;}
.ws14{word-spacing:-9.504320px;}
.ws9e{word-spacing:-9.468518px;}
.ws41{word-spacing:-9.444545px;}
.ws83{word-spacing:-9.205442px;}
.ws15{word-spacing:-9.145667px;}
.ws9a{word-spacing:-9.026116px;}
.ws3{word-spacing:-8.784634px;}
.ws18{word-spacing:-8.667462px;}
.ws7b{word-spacing:-8.428360px;}
.ws81{word-spacing:-8.308808px;}
.ws20{word-spacing:-8.189257px;}
.wsb5{word-spacing:-7.962163px;}
.ws6a{word-spacing:-4.602721px;}
.ws9c{word-spacing:-2.367130px;}
.ws74{word-spacing:-1.374839px;}
.ws5{word-spacing:-0.071731px;}
.ws22{word-spacing:-0.059776px;}
.wsb7{word-spacing:-0.053798px;}
.ws80{word-spacing:-0.043636px;}
.ws32{word-spacing:0.000000px;}
.wsa8{word-spacing:13.073011px;}
.wsa2{word-spacing:13.126810px;}
.ws37{word-spacing:14.884124px;}
.wsb1{word-spacing:15.278746px;}
.ws40{word-spacing:17.861069px;}
.ws56{word-spacing:18.076262px;}
.wsb6{word-spacing:18.883238px;}
.ws0{word-spacing:21.433223px;}
.ws3b{word-spacing:137.782758px;}
.ws39{word-spacing:157.688033px;}
.ws3a{word-spacing:162.589632px;}
.ws3c{word-spacing:172.572157px;}
.ws3e{word-spacing:185.842340px;}
.ws3f{word-spacing:189.189774px;}
.ws3d{word-spacing:193.672944px;}
.ws38{word-spacing:202.699060px;}
.ws2f{word-spacing:377.072279px;}
.ws2d{word-spacing:377.087765px;}
._16{margin-left:-14.337795px;}
._3{margin-left:-10.759650px;}
._1b{margin-left:-8.966406px;}
._0{margin-left:-6.886176px;}
._6{margin-left:-5.576155px;}
._2{margin-left:-3.873474px;}
._1{margin-left:-2.151930px;}
._5{margin-left:-1.147326px;}
._a{width:1.075994px;}
._4{width:2.341900px;}
._7{width:3.355565px;}
._f{width:9.982525px;}
._1f{width:11.536691px;}
._20{width:12.612652px;}
._10{width:13.987490px;}
._9{width:15.960110px;}
._1d{width:17.562061px;}
._11{width:19.187968px;}
._c{width:20.204153px;}
._14{width:21.339889px;}
._8{width:23.337852px;}
._1e{width:25.346704px;}
._21{width:27.317449px;}
._1c{width:28.393418px;}
._d{width:29.887800px;}
._b{width:30.903968px;}
._12{width:32.039705px;}
._13{width:33.701507px;}
._e{width:36.702218px;}
._18{width:71.132964px;}
._19{width:93.880654px;}
._17{width:104.726851px;}
._1a{width:249.804632px;}
._15{width:580.495108px;}
.fc2{color:transparent;}
.fc1{color:rgb(51,51,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.187420px;}
.fs5{font-size:37.060800px;}
.fs8{font-size:41.843100px;}
.fs4{font-size:43.636200px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:52.602600px;}
.fsa{font-size:53.798280px;}
.fsb{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs7{font-size:59.775840px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y5d{bottom:38.854500px;}
.y5c{bottom:64.258500px;}
.y5e{bottom:72.105000px;}
.y59{bottom:88.291500px;}
.y33{bottom:92.631000px;}
.y58{bottom:106.224000px;}
.y32{bottom:116.401500px;}
.y57{bottom:124.156500px;}
.yd9{bottom:125.881500px;}
.y31{bottom:134.334000px;}
.y56{bottom:142.089000px;}
.y120{bottom:143.584500px;}
.yd8{bottom:143.814000px;}
.y30{bottom:152.266500px;}
.y55{bottom:160.021500px;}
.y11f{bottom:161.517000px;}
.yd7{bottom:161.746500px;}
.y2f{bottom:170.199000px;}
.yf9{bottom:172.927500px;}
.y54{bottom:177.955500px;}
.y11e{bottom:179.449500px;}
.yd6{bottom:179.680500px;}
.y2e{bottom:188.131500px;}
.yf8{bottom:190.860000px;}
.y53{bottom:195.888000px;}
.y11d{bottom:197.382000px;}
.yd5{bottom:197.613000px;}
.y2d{bottom:206.065500px;}
.yf7{bottom:208.792500px;}
.y52{bottom:213.820500px;}
.y11c{bottom:215.314500px;}
.yd4{bottom:215.545500px;}
.y2c{bottom:221.755500px;}
.y2b{bottom:223.998000px;}
.y51{bottom:231.753000px;}
.yb0{bottom:232.536000px;}
.y11b{bottom:233.247000px;}
.yd3{bottom:233.478000px;}
.ye1{bottom:234.739500px;}
.y94{bottom:238.477500px;}
.y2a{bottom:241.930500px;}
.y50{bottom:249.685500px;}
.yaf{bottom:250.468500px;}
.y11a{bottom:251.181000px;}
.ye0{bottom:252.672000px;}
.yd2{bottom:253.135500px;}
.y29{bottom:259.863000px;}
.y4f{bottom:267.618000px;}
.y93{bottom:267.667500px;}
.yae{bottom:268.401000px;}
.y119{bottom:269.113500px;}
.ydf{bottom:270.604500px;}
.yd1{bottom:271.068000px;}
.y28{bottom:277.795500px;}
.y4e{bottom:285.552000px;}
.y92{bottom:285.600000px;}
.yad{bottom:286.333500px;}
.y118{bottom:287.046000px;}
.yd0{bottom:289.002000px;}
.y27{bottom:295.729500px;}
.y4d{bottom:303.484500px;}
.y91{bottom:303.532500px;}
.yac{bottom:304.266000px;}
.y117{bottom:304.978500px;}
.ycf{bottom:306.934500px;}
.y26{bottom:313.662000px;}
.y4c{bottom:321.417000px;}
.y90{bottom:321.465000px;}
.yab{bottom:322.200000px;}
.y116{bottom:322.911000px;}
.yce{bottom:324.867000px;}
.y25{bottom:331.594500px;}
.yaa{bottom:337.890000px;}
.y4b{bottom:339.349500px;}
.y8f{bottom:339.397500px;}
.ya9{bottom:340.132500px;}
.y115{bottom:340.843500px;}
.ycd{bottom:342.799500px;}
.y24{bottom:349.527000px;}
.y84{bottom:357.282000px;}
.y8e{bottom:357.330000px;}
.ya8{bottom:358.065000px;}
.y114{bottom:358.777500px;}
.ycc{bottom:360.732000px;}
.y4a{bottom:364.317000px;}
.y23{bottom:367.459500px;}
.y83{bottom:375.214500px;}
.ya7{bottom:375.997500px;}
.ycb{bottom:376.423500px;}
.y113{bottom:376.710000px;}
.yca{bottom:378.664500px;}
.y22{bottom:385.392000px;}
.y82{bottom:393.148500px;}
.y112{bottom:394.642500px;}
.ya6{bottom:394.713000px;}
.yc9{bottom:396.598500px;}
.y49{bottom:399.436500px;}
.yde{bottom:405.870000px;}
.y21{bottom:410.746500px;}
.y81{bottom:411.387000px;}
.y111{bottom:412.575000px;}
.ya5{bottom:412.645500px;}
.yc8{bottom:414.531000px;}
.y48{bottom:417.369000px;}
.ydd{bottom:423.802500px;}
.y80{bottom:429.319500px;}
.y110{bottom:430.507500px;}
.ya4{bottom:430.578000px;}
.yc7{bottom:432.463500px;}
.y47{bottom:435.301500px;}
.y20{bottom:446.802000px;}
.y7f{bottom:447.252000px;}
.y10f{bottom:448.440000px;}
.ya3{bottom:448.510500px;}
.yc6{bottom:450.396000px;}
.y46{bottom:453.235500px;}
.y1f{bottom:464.734500px;}
.y7e{bottom:465.186000px;}
.ya2{bottom:466.443000px;}
.yc5{bottom:468.328500px;}
.y45{bottom:471.330000px;}
.y10e{bottom:475.938000px;}
.y124{bottom:481.975500px;}
.ya1{bottom:482.134500px;}
.y1e{bottom:483.033000px;}
.y7d{bottom:483.118500px;}
.ya0{bottom:484.377000px;}
.yc4{bottom:486.262500px;}
.y44{bottom:489.264000px;}
.y142{bottom:498.414000px;}
.y1d{bottom:500.967000px;}
.y7c{bottom:501.051000px;}
.y9f{bottom:502.309500px;}
.yc3{bottom:504.195000px;}
.y43{bottom:507.196500px;}
.y123{bottom:509.682000px;}
.y141{bottom:514.852500px;}
.y10d{bottom:517.182000px;}
.y9e{bottom:518.001000px;}
.y1c{bottom:518.899500px;}
.y7b{bottom:518.983500px;}
.y9d{bottom:520.242000px;}
.yc2{bottom:522.127500px;}
.y42{bottom:525.129000px;}
.y122{bottom:527.614500px;}
.y140{bottom:531.291000px;}
.y10c{bottom:535.116000px;}
.y1b{bottom:536.832000px;}
.y7a{bottom:536.916000px;}
.y9c{bottom:538.174500px;}
.yc1{bottom:540.060000px;}
.y41{bottom:543.061500px;}
.y121{bottom:545.547000px;}
.y13f{bottom:547.728000px;}
.y10b{bottom:553.048500px;}
.y1a{bottom:554.764500px;}
.y79{bottom:554.848500px;}
.y9b{bottom:556.107000px;}
.yc0{bottom:557.992500px;}
.y40{bottom:560.994000px;}
.y13e{bottom:564.166500px;}
.y10a{bottom:570.981000px;}
.y19{bottom:572.697000px;}
.y78{bottom:572.782500px;}
.y9a{bottom:574.039500px;}
.ybf{bottom:575.925000px;}
.y3f{bottom:578.926500px;}
.y13d{bottom:580.605000px;}
.y109{bottom:588.913500px;}
.y77{bottom:590.715000px;}
.y18{bottom:590.997000px;}
.ybe{bottom:593.859000px;}
.y3e{bottom:596.860500px;}
.y13c{bottom:604.830000px;}
.y108{bottom:606.846000px;}
.y76{bottom:608.647500px;}
.y17{bottom:608.929500px;}
.ybd{bottom:611.791500px;}
.y99{bottom:614.389500px;}
.y3d{bottom:614.793000px;}
.y13b{bottom:621.268500px;}
.y107{bottom:624.778500px;}
.y75{bottom:626.580000px;}
.y16{bottom:626.862000px;}
.ybc{bottom:629.724000px;}
.y98{bottom:632.323500px;}
.y3c{bottom:632.887500px;}
.y13a{bottom:637.707000px;}
.y106{bottom:642.712500px;}
.y74{bottom:644.512500px;}
.y15{bottom:644.794500px;}
.ybb{bottom:647.656500px;}
.y97{bottom:650.256000px;}
.y3b{bottom:650.821500px;}
.y105{bottom:660.645000px;}
.y139{bottom:661.932000px;}
.y14{bottom:662.727000px;}
.yba{bottom:665.589000px;}
.y96{bottom:668.188500px;}
.y3a{bottom:668.754000px;}
.y73{bottom:669.753000px;}
.y138{bottom:678.370500px;}
.y104{bottom:678.577500px;}
.y13{bottom:680.659500px;}
.yb9{bottom:683.521500px;}
.y95{bottom:686.121000px;}
.y39{bottom:686.686500px;}
.y72{bottom:690.673500px;}
.y137{bottom:694.809000px;}
.y103{bottom:696.510000px;}
.y12{bottom:698.593500px;}
.yb8{bottom:703.180500px;}
.y38{bottom:704.619000px;}
.yf6{bottom:707.455500px;}
.y102{bottom:714.442500px;}
.y136{bottom:715.731000px;}
.y11{bottom:716.526000px;}
.yb7{bottom:721.113000px;}
.y37{bottom:722.551500px;}
.yf5{bottom:725.389500px;}
.y135{bottom:732.169500px;}
.y101{bottom:732.375000px;}
.y71{bottom:732.652500px;}
.y10{bottom:734.458500px;}
.yb6{bottom:739.045500px;}
.y36{bottom:740.484000px;}
.yf4{bottom:743.322000px;}
.y134{bottom:748.606500px;}
.y100{bottom:750.309000px;}
.y70{bottom:750.585000px;}
.yf{bottom:752.391000px;}
.yb5{bottom:756.978000px;}
.y35{bottom:758.418000px;}
.yf3{bottom:761.254500px;}
.y133{bottom:765.045000px;}
.y6f{bottom:768.519000px;}
.yff{bottom:769.735500px;}
.ye{bottom:770.323500px;}
.yb4{bottom:774.910500px;}
.y34{bottom:776.350500px;}
.yf2{bottom:779.187000px;}
.y132{bottom:781.483500px;}
.y6e{bottom:786.451500px;}
.yfe{bottom:787.668000px;}
.ydc{bottom:794.254500px;}
.yd{bottom:794.283000px;}
.yf1{bottom:797.119500px;}
.y6d{bottom:804.384000px;}
.yfd{bottom:805.600500px;}
.y131{bottom:805.708500px;}
.yb3{bottom:810.640500px;}
.ydb{bottom:812.187000px;}
.yf0{bottom:815.052000px;}
.y130{bottom:822.147000px;}
.y6c{bottom:822.316500px;}
.yfc{bottom:823.534500px;}
.yb2{bottom:828.573000px;}
.yda{bottom:830.119500px;}
.yef{bottom:832.986000px;}
.yc{bottom:836.953500px;}
.y12f{bottom:838.585500px;}
.y6b{bottom:840.249000px;}
.yfb{bottom:841.467000px;}
.yb1{bottom:846.505500px;}
.yee{bottom:850.918500px;}
.y12e{bottom:855.024000px;}
.yb{bottom:858.630000px;}
.yfa{bottom:859.399500px;}
.y6a{bottom:865.684500px;}
.yed{bottom:868.851000px;}
.y12d{bottom:871.462500px;}
.y69{bottom:874.651500px;}
.y8d{bottom:877.332000px;}
.ya{bottom:880.305000px;}
.yec{bottom:886.783500px;}
.y8c{bottom:895.264500px;}
.y12c{bottom:895.687500px;}
.y9{bottom:901.981500px;}
.yeb{bottom:904.716000px;}
.y12b{bottom:912.126000px;}
.y8b{bottom:913.197000px;}
.y68{bottom:914.400000px;}
.yea{bottom:922.648500px;}
.y8{bottom:923.656500px;}
.y12a{bottom:928.564500px;}
.y8a{bottom:931.131000px;}
.ye9{bottom:940.582500px;}
.y7{bottom:945.333000px;}
.y67{bottom:948.756000px;}
.y89{bottom:949.063500px;}
.y129{bottom:952.789500px;}
.ye8{bottom:958.515000px;}
.y66{bottom:966.690000px;}
.y88{bottom:966.996000px;}
.y6{bottom:967.009500px;}
.y128{bottom:969.228000px;}
.ye7{bottom:976.447500px;}
.y5{bottom:982.176000px;}
.y65{bottom:984.622500px;}
.y87{bottom:984.928500px;}
.y127{bottom:985.666500px;}
.ye6{bottom:994.986000px;}
.y126{bottom:1002.103500px;}
.y64{bottom:1002.555000px;}
.y86{bottom:1002.861000px;}
.y4{bottom:1003.851000px;}
.ye5{bottom:1012.918500px;}
.y63{bottom:1020.487500px;}
.y85{bottom:1020.793500px;}
.y3{bottom:1025.527500px;}
.y125{bottom:1027.714500px;}
.ye4{bottom:1030.851000px;}
.y62{bottom:1038.727500px;}
.ye3{bottom:1048.783500px;}
.y61{bottom:1056.660000px;}
.y2{bottom:1061.389500px;}
.ye2{bottom:1066.717500px;}
.y60{bottom:1074.592500px;}
.y1{bottom:1088.289000px;}
.y5f{bottom:1092.525000px;}
.y5b{bottom:1129.165500px;}
.y5a{bottom:1147.098000px;}
.ha{height:25.489258px;}
.h12{height:26.899020px;}
.h15{height:36.098726px;}
.h9{height:39.098035px;}
.he{height:40.348710px;}
.h10{height:41.364715px;}
.hd{height:42.440846px;}
.h5{height:47.131930px;}
.hc{height:48.071681px;}
.h14{height:48.203366px;}
.h6{height:48.992410px;}
.h8{height:49.637990px;}
.hb{height:53.078325px;}
.h7{height:53.558938px;}
.h2{height:59.565422px;}
.h11{height:60.794035px;}
.h13{height:60.800035px;}
.h4{height:73.165930px;}
.h3{height:73.171930px;}
.hf{height:77.232715px;}
.h1{height:1183.500000px;}
.h0{height:1183.561500px;}
.w0{width:889.165500px;}
.w1{width:889.500000px;}
.x0{left:0.000000px;}
.x5a{left:75.535500px;}
.x2b{left:82.252500px;}
.xc{left:83.373000px;}
.x4{left:88.759500px;}
.xe{left:94.581000px;}
.xd{left:98.317500px;}
.x2c{left:105.508500px;}
.xf{left:113.260500px;}
.x76{left:114.661500px;}
.x69{left:116.169000px;}
.x10{left:117.645000px;}
.x3{left:120.609000px;}
.x5e{left:125.500500px;}
.x34{left:128.379000px;}
.x31{left:136.246500px;}
.x6a{left:141.666000px;}
.xa5{left:143.988000px;}
.x73{left:147.202500px;}
.x5{left:148.242000px;}
.x2e{left:149.610000px;}
.x74{left:152.416500px;}
.x11{left:155.781000px;}
.x32{left:158.793000px;}
.x12{left:163.167000px;}
.x35{left:166.101000px;}
.x6b{left:169.188000px;}
.x9{left:172.236000px;}
.x71{left:173.419500px;}
.x2f{left:176.464500px;}
.xb5{left:182.610000px;}
.x5f{left:183.991500px;}
.x16{left:187.305000px;}
.x7b{left:189.966000px;}
.x36{left:191.011500px;}
.x61{left:194.994000px;}
.x13{left:197.149500px;}
.x14{left:204.535500px;}
.x60{left:211.503000px;}
.x6f{left:219.016500px;}
.x37{left:222.558000px;}
.x8{left:226.447500px;}
.x33{left:227.584500px;}
.x38{left:231.849000px;}
.x9c{left:233.788500px;}
.x15{left:236.082000px;}
.x78{left:241.233000px;}
.x1{left:247.609500px;}
.x79{left:253.264500px;}
.x7{left:258.502500px;}
.x6{left:261.532500px;}
.x70{left:263.625000px;}
.x2{left:265.438500px;}
.x7c{left:268.002000px;}
.x6c{left:270.001500px;}
.xb{left:271.090500px;}
.x75{left:272.590500px;}
.x39{left:273.684000px;}
.x7a{left:281.980500px;}
.x9d{left:288.204000px;}
.x97{left:289.516500px;}
.x6d{left:297.508500px;}
.x3a{left:298.530000px;}
.x66{left:300.724500px;}
.x9e{left:307.915500px;}
.x18{left:312.805500px;}
.xa{left:317.545500px;}
.x19{left:323.250000px;}
.x62{left:324.495000px;}
.x67{left:328.050000px;}
.x98{left:331.554000px;}
.x64{left:333.756000px;}
.x2d{left:336.280500px;}
.x9f{left:348.016500px;}
.x65{left:350.761500px;}
.x6e{left:355.341000px;}
.x72{left:356.428500px;}
.x5c{left:357.579000px;}
.x99{left:365.629500px;}
.x63{left:366.820500px;}
.x9a{left:369.715500px;}
.x77{left:373.915500px;}
.x17{left:376.869000px;}
.x68{left:380.847000px;}
.x7d{left:389.742000px;}
.xb6{left:390.771000px;}
.x3b{left:395.154000px;}
.x5d{left:403.659000px;}
.x30{left:405.099000px;}
.x9b{left:430.215000px;}
.x7e{left:431.779500px;}
.x1e{left:454.299000px;}
.x1a{left:455.419500px;}
.x1d{left:470.364000px;}
.x1b{left:472.605000px;}
.x94{left:476.442000px;}
.xb7{left:477.793500px;}
.x1f{left:478.917000px;}
.x4a{left:484.299000px;}
.x1c{left:485.308500px;}
.x85{left:490.338000px;}
.xaf{left:492.811500px;}
.x82{left:501.187500px;}
.x4c{left:504.604500px;}
.x41{left:514.783500px;}
.xa3{left:519.034500px;}
.x51{left:521.940000px;}
.x8f{left:526.407000px;}
.xb0{left:527.646000px;}
.x3c{left:530.374500px;}
.xb4{left:531.444000px;}
.x4d{left:533.157000px;}
.x86{left:535.098000px;}
.x5b{left:540.523500px;}
.x52{left:554.148000px;}
.x83{left:558.381000px;}
.xaa{left:561.834000px;}
.x90{left:567.259500px;}
.x26{left:568.306500px;}
.x88{left:569.383500px;}
.xb3{left:570.622500px;}
.x3d{left:574.953000px;}
.x53{left:578.452500px;}
.xa4{left:579.534000px;}
.x20{left:584.977500px;}
.xa1{left:587.658000px;}
.x91{left:597.811500px;}
.x84{left:604.143000px;}
.x54{left:605.385000px;}
.xab{left:607.681500px;}
.x21{left:609.648000px;}
.x96{left:613.218000px;}
.x89{left:614.737500px;}
.x45{left:620.553000px;}
.x27{left:624.205500px;}
.x8c{left:627.279000px;}
.x95{left:632.160000px;}
.x57{left:633.289500px;}
.x42{left:636.766500px;}
.x4e{left:641.665500px;}
.x22{left:647.479500px;}
.x92{left:649.291500px;}
.x44{left:651.577500px;}
.x81{left:655.111500px;}
.x55{left:658.347000px;}
.x58{left:659.622000px;}
.x46{left:660.819000px;}
.xa2{left:665.590500px;}
.x8d{left:668.131500px;}
.xad{left:671.287500px;}
.x23{left:673.942500px;}
.x47{left:676.962000px;}
.x8e{left:678.601500px;}
.x4f{left:684.622500px;}
.x43{left:689.608500px;}
.x59{left:692.997000px;}
.x40{left:695.482500px;}
.x7f{left:699.817500px;}
.x56{left:702.355500px;}
.x87{left:704.263500px;}
.xa6{left:708.871500px;}
.x8a{left:710.634000px;}
.xae{left:713.191500px;}
.x24{left:719.247000px;}
.xb2{left:728.250000px;}
.x50{left:730.393500px;}
.xa7{left:732.648000px;}
.x48{left:738.751500px;}
.xa0{left:741.624000px;}
.x80{left:745.575000px;}
.x25{left:750.591000px;}
.x28{left:754.969500px;}
.xb1{left:761.296500px;}
.x4b{left:764.170500px;}
.xac{left:765.355500px;}
.xa8{left:767.769000px;}
.x8b{left:771.421500px;}
.x3e{left:774.213000px;}
.xa9{left:777.156000px;}
.x49{left:784.521000px;}
.x29{left:786.874500px;}
.x93{left:794.008500px;}
.x3f{left:796.200000px;}
.x2a{left:823.480500px;}
@media print{
.v2{vertical-align:-23.146667pt;}
.v4{vertical-align:-15.429333pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:19.285333pt;}
.v1{vertical-align:23.146667pt;}
.v6{vertical-align:31.882667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000015pt;}
.ls16{letter-spacing:0.001052pt;}
.ls19{letter-spacing:0.005120pt;}
.ls2{letter-spacing:2.653067pt;}
.ls8{letter-spacing:2.654133pt;}
.ls1{letter-spacing:2.658400pt;}
.ls3{letter-spacing:2.659467pt;}
.ls0{letter-spacing:4.542378pt;}
.ls18{letter-spacing:8.857067pt;}
.ls17{letter-spacing:11.512800pt;}
.ls1b{letter-spacing:11.518133pt;}
.ls1c{letter-spacing:11.806400pt;}
.ls1d{letter-spacing:11.808499pt;}
.ls6{letter-spacing:13.594852pt;}
.ls5{letter-spacing:13.897212pt;}
.ls1a{letter-spacing:15.935580pt;}
.ls1e{letter-spacing:15.939467pt;}
.ls15{letter-spacing:15.966133pt;}
.lsc{letter-spacing:136.403467pt;}
.ls9{letter-spacing:150.291467pt;}
.lsb{letter-spacing:154.126133pt;}
.lsa{letter-spacing:165.059467pt;}
.lse{letter-spacing:199.848800pt;}
.ls12{letter-spacing:205.747467pt;}
.ls14{letter-spacing:207.235467pt;}
.ls10{letter-spacing:209.224800pt;}
.lsd{letter-spacing:215.112800pt;}
.ls11{letter-spacing:221.011467pt;}
.ls13{letter-spacing:222.499467pt;}
.lsf{letter-spacing:224.494133pt;}
.ws29{word-spacing:-53.134080pt;}
.ws2b{word-spacing:-39.903694pt;}
.ws2c{word-spacing:-39.851821pt;}
.ws2e{word-spacing:-39.850765pt;}
.ws30{word-spacing:-39.850560pt;}
.ws31{word-spacing:-35.865520pt;}
.wsf{word-spacing:-26.566933pt;}
.ws9f{word-spacing:-23.910400pt;}
.ws2{word-spacing:-23.378933pt;}
.ws2a{word-spacing:-21.254807pt;}
.ws1b{word-spacing:-21.253600pt;}
.ws58{word-spacing:-17.534176pt;}
.ws7{word-spacing:-17.481042pt;}
.ws1c{word-spacing:-17.427908pt;}
.ws7f{word-spacing:-17.374774pt;}
.ws62{word-spacing:-17.268507pt;}
.ws63{word-spacing:-17.215373pt;}
.ws47{word-spacing:-16.949703pt;}
.ws7c{word-spacing:-16.577766pt;}
.ws59{word-spacing:-16.312097pt;}
.ws51{word-spacing:-16.258963pt;}
.ws43{word-spacing:-16.099562pt;}
.ws53{word-spacing:-15.993294pt;}
.ws1{word-spacing:-15.940267pt;}
.ws6b{word-spacing:-15.940160pt;}
.ws6e{word-spacing:-15.887026pt;}
.ws91{word-spacing:-15.833892pt;}
.ws9{word-spacing:-15.780758pt;}
.wsc{word-spacing:-15.727625pt;}
.ws85{word-spacing:-15.674491pt;}
.ws1f{word-spacing:-15.621357pt;}
.ws48{word-spacing:-15.461955pt;}
.ws8e{word-spacing:-15.408821pt;}
.wsab{word-spacing:-15.398298pt;}
.ws8d{word-spacing:-15.302554pt;}
.ws77{word-spacing:-15.249420pt;}
.ws5a{word-spacing:-15.143152pt;}
.ws34{word-spacing:-15.090018pt;}
.ws4b{word-spacing:-15.036884pt;}
.ws52{word-spacing:-14.983750pt;}
.ws55{word-spacing:-14.930617pt;}
.ws68{word-spacing:-14.877483pt;}
.wsa4{word-spacing:-14.872269pt;}
.ws86{word-spacing:-14.664947pt;}
.ws4e{word-spacing:-14.611813pt;}
.ws4f{word-spacing:-14.558679pt;}
.ws88{word-spacing:-14.505546pt;}
.ws7a{word-spacing:-14.452412pt;}
.ws24{word-spacing:-14.399278pt;}
.ws71{word-spacing:-14.293010pt;}
.ws67{word-spacing:-14.239876pt;}
.ws95{word-spacing:-14.186742pt;}
.ws54{word-spacing:-14.027341pt;}
.ws33{word-spacing:-13.974207pt;}
.ws75{word-spacing:-13.921073pt;}
.ws90{word-spacing:-13.867939pt;}
.ws1d{word-spacing:-13.814805pt;}
.ws8a{word-spacing:-13.761671pt;}
.ws60{word-spacing:-13.708538pt;}
.ws79{word-spacing:-13.655404pt;}
.ws4a{word-spacing:-13.602270pt;}
.ws42{word-spacing:-13.549136pt;}
.wse{word-spacing:-13.496002pt;}
.wsaf{word-spacing:-13.485466pt;}
.wsd{word-spacing:-13.442868pt;}
.ws13{word-spacing:-13.389734pt;}
.wsb{word-spacing:-13.336601pt;}
.ws8{word-spacing:-13.283467pt;}
.ws6{word-spacing:-13.230333pt;}
.ws12{word-spacing:-13.177199pt;}
.ws11{word-spacing:-13.124065pt;}
.ws10{word-spacing:-13.070931pt;}
.ws44{word-spacing:-13.017797pt;}
.ws23{word-spacing:-12.964663pt;}
.ws6c{word-spacing:-12.911530pt;}
.ws78{word-spacing:-12.805262pt;}
.ws28{word-spacing:-12.698994pt;}
.ws1e{word-spacing:-12.592726pt;}
.ws27{word-spacing:-12.539593pt;}
.ws5d{word-spacing:-12.486459pt;}
.ws7d{word-spacing:-12.380191pt;}
.wsaa{word-spacing:-12.337766pt;}
.ws82{word-spacing:-12.327057pt;}
.wsae{word-spacing:-12.242125pt;}
.ws19{word-spacing:-12.220789pt;}
.wsa7{word-spacing:-12.194304pt;}
.ws87{word-spacing:-12.167655pt;}
.wsa1{word-spacing:-12.154257pt;}
.wsa3{word-spacing:-12.146483pt;}
.ws7e{word-spacing:-12.114522pt;}
.ws94{word-spacing:-12.061388pt;}
.wsa0{word-spacing:-12.050842pt;}
.ws96{word-spacing:-12.008254pt;}
.wsa9{word-spacing:-11.955200pt;}
.ws69{word-spacing:-11.901986pt;}
.ws4c{word-spacing:-11.848852pt;}
.wsa5{word-spacing:-11.811738pt;}
.ws8b{word-spacing:-11.795718pt;}
.wsb2{word-spacing:-11.763917pt;}
.ws4{word-spacing:-11.689467pt;}
.ws49{word-spacing:-11.636317pt;}
.ws5b{word-spacing:-11.530049pt;}
.ws5c{word-spacing:-11.476915pt;}
.wsb4{word-spacing:-11.429171pt;}
.ws73{word-spacing:-11.423781pt;}
.ws64{word-spacing:-11.264380pt;}
.ws45{word-spacing:-11.211246pt;}
.ws26{word-spacing:-11.158112pt;}
.ws4d{word-spacing:-11.104978pt;}
.ws21{word-spacing:-11.051844pt;}
.ws93{word-spacing:-10.998710pt;}
.ws5e{word-spacing:-10.892443pt;}
.ws99{word-spacing:-10.839309pt;}
.ws89{word-spacing:-10.786175pt;}
.ws9b{word-spacing:-10.626773pt;}
.ws70{word-spacing:-10.573639pt;}
.wsad{word-spacing:-10.472755pt;}
.ws17{word-spacing:-10.467372pt;}
.ws1a{word-spacing:-10.414238pt;}
.wsa{word-spacing:-10.361104pt;}
.wsb0{word-spacing:-10.233651pt;}
.ws8c{word-spacing:-10.201702pt;}
.wsac{word-spacing:-10.185830pt;}
.ws76{word-spacing:-10.148569pt;}
.ws35{word-spacing:-10.095435pt;}
.ws84{word-spacing:-9.989167pt;}
.ws66{word-spacing:-9.882899pt;}
.ws36{word-spacing:-9.829765pt;}
.ws16{word-spacing:-9.776631pt;}
.ws6f{word-spacing:-9.510962pt;}
.ws57{word-spacing:-9.457828pt;}
.ws97{word-spacing:-9.404694pt;}
.ws25{word-spacing:-9.351561pt;}
.ws46{word-spacing:-9.298427pt;}
.ws61{word-spacing:-9.192159pt;}
.ws92{word-spacing:-9.139025pt;}
.ws98{word-spacing:-9.085891pt;}
.ws5f{word-spacing:-8.979623pt;}
.wsb3{word-spacing:-8.942490pt;}
.ws72{word-spacing:-8.926490pt;}
.ws50{word-spacing:-8.820222pt;}
.ws6d{word-spacing:-8.767088pt;}
.ws9d{word-spacing:-8.751206pt;}
.ws8f{word-spacing:-8.660820pt;}
.wsa6{word-spacing:-8.607744pt;}
.ws65{word-spacing:-8.501419pt;}
.ws14{word-spacing:-8.448285pt;}
.ws9e{word-spacing:-8.416461pt;}
.ws41{word-spacing:-8.395151pt;}
.ws83{word-spacing:-8.182615pt;}
.ws15{word-spacing:-8.129482pt;}
.ws9a{word-spacing:-8.023214pt;}
.ws3{word-spacing:-7.808564pt;}
.ws18{word-spacing:-7.704411pt;}
.ws7b{word-spacing:-7.491875pt;}
.ws81{word-spacing:-7.385607pt;}
.ws20{word-spacing:-7.279340pt;}
.wsb5{word-spacing:-7.077478pt;}
.ws6a{word-spacing:-4.091308pt;}
.ws9c{word-spacing:-2.104115pt;}
.ws74{word-spacing:-1.222079pt;}
.ws5{word-spacing:-0.063761pt;}
.ws22{word-spacing:-0.053134pt;}
.wsb7{word-spacing:-0.047821pt;}
.ws80{word-spacing:-0.038788pt;}
.ws32{word-spacing:0.000000pt;}
.wsa8{word-spacing:11.620454pt;}
.wsa2{word-spacing:11.668275pt;}
.ws37{word-spacing:13.230333pt;}
.wsb1{word-spacing:13.581107pt;}
.ws40{word-spacing:15.876506pt;}
.ws56{word-spacing:16.067789pt;}
.wsb6{word-spacing:16.785101pt;}
.ws0{word-spacing:19.051754pt;}
.ws3b{word-spacing:122.473563pt;}
.ws39{word-spacing:140.167140pt;}
.ws3a{word-spacing:144.524117pt;}
.ws3c{word-spacing:153.397473pt;}
.ws3e{word-spacing:165.193191pt;}
.ws3f{word-spacing:168.168688pt;}
.ws3d{word-spacing:172.153728pt;}
.ws38{word-spacing:180.176942pt;}
.ws2f{word-spacing:335.175359pt;}
.ws2d{word-spacing:335.189124pt;}
._16{margin-left:-12.744707pt;}
._3{margin-left:-9.564133pt;}
._1b{margin-left:-7.970139pt;}
._0{margin-left:-6.121045pt;}
._6{margin-left:-4.956582pt;}
._2{margin-left:-3.443088pt;}
._1{margin-left:-1.912827pt;}
._5{margin-left:-1.019845pt;}
._a{width:0.956439pt;}
._4{width:2.081689pt;}
._7{width:2.982724pt;}
._f{width:8.873356pt;}
._1f{width:10.254836pt;}
._20{width:11.211246pt;}
._10{width:12.433325pt;}
._9{width:14.186765pt;}
._1d{width:15.610721pt;}
._11{width:17.055971pt;}
._c{width:17.959247pt;}
._14{width:18.968790pt;}
._8{width:20.744757pt;}
._1e{width:22.530403pt;}
._21{width:24.282177pt;}
._1c{width:25.238594pt;}
._d{width:26.566933pt;}
._b{width:27.470194pt;}
._12{width:28.479738pt;}
._13{width:29.956895pt;}
._e{width:32.624194pt;}
._18{width:63.229301pt;}
._19{width:83.449470pt;}
._17{width:93.090534pt;}
._1a{width:222.048562pt;}
._15{width:515.995652pt;}
.fs9{font-size:25.944373pt;}
.fs5{font-size:32.942933pt;}
.fs8{font-size:37.193867pt;}
.fs4{font-size:38.787733pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:46.757867pt;}
.fsa{font-size:47.820693pt;}
.fsb{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs7{font-size:53.134080pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:34.537333pt;}
.y5c{bottom:57.118667pt;}
.y5e{bottom:64.093333pt;}
.y59{bottom:78.481333pt;}
.y33{bottom:82.338667pt;}
.y58{bottom:94.421333pt;}
.y32{bottom:103.468000pt;}
.y57{bottom:110.361333pt;}
.yd9{bottom:111.894667pt;}
.y31{bottom:119.408000pt;}
.y56{bottom:126.301333pt;}
.y120{bottom:127.630667pt;}
.yd8{bottom:127.834667pt;}
.y30{bottom:135.348000pt;}
.y55{bottom:142.241333pt;}
.y11f{bottom:143.570667pt;}
.yd7{bottom:143.774667pt;}
.y2f{bottom:151.288000pt;}
.yf9{bottom:153.713333pt;}
.y54{bottom:158.182667pt;}
.y11e{bottom:159.510667pt;}
.yd6{bottom:159.716000pt;}
.y2e{bottom:167.228000pt;}
.yf8{bottom:169.653333pt;}
.y53{bottom:174.122667pt;}
.y11d{bottom:175.450667pt;}
.yd5{bottom:175.656000pt;}
.y2d{bottom:183.169333pt;}
.yf7{bottom:185.593333pt;}
.y52{bottom:190.062667pt;}
.y11c{bottom:191.390667pt;}
.yd4{bottom:191.596000pt;}
.y2c{bottom:197.116000pt;}
.y2b{bottom:199.109333pt;}
.y51{bottom:206.002667pt;}
.yb0{bottom:206.698667pt;}
.y11b{bottom:207.330667pt;}
.yd3{bottom:207.536000pt;}
.ye1{bottom:208.657333pt;}
.y94{bottom:211.980000pt;}
.y2a{bottom:215.049333pt;}
.y50{bottom:221.942667pt;}
.yaf{bottom:222.638667pt;}
.y11a{bottom:223.272000pt;}
.ye0{bottom:224.597333pt;}
.yd2{bottom:225.009333pt;}
.y29{bottom:230.989333pt;}
.y4f{bottom:237.882667pt;}
.y93{bottom:237.926667pt;}
.yae{bottom:238.578667pt;}
.y119{bottom:239.212000pt;}
.ydf{bottom:240.537333pt;}
.yd1{bottom:240.949333pt;}
.y28{bottom:246.929333pt;}
.y4e{bottom:253.824000pt;}
.y92{bottom:253.866667pt;}
.yad{bottom:254.518667pt;}
.y118{bottom:255.152000pt;}
.yd0{bottom:256.890667pt;}
.y27{bottom:262.870667pt;}
.y4d{bottom:269.764000pt;}
.y91{bottom:269.806667pt;}
.yac{bottom:270.458667pt;}
.y117{bottom:271.092000pt;}
.ycf{bottom:272.830667pt;}
.y26{bottom:278.810667pt;}
.y4c{bottom:285.704000pt;}
.y90{bottom:285.746667pt;}
.yab{bottom:286.400000pt;}
.y116{bottom:287.032000pt;}
.yce{bottom:288.770667pt;}
.y25{bottom:294.750667pt;}
.yaa{bottom:300.346667pt;}
.y4b{bottom:301.644000pt;}
.y8f{bottom:301.686667pt;}
.ya9{bottom:302.340000pt;}
.y115{bottom:302.972000pt;}
.ycd{bottom:304.710667pt;}
.y24{bottom:310.690667pt;}
.y84{bottom:317.584000pt;}
.y8e{bottom:317.626667pt;}
.ya8{bottom:318.280000pt;}
.y114{bottom:318.913333pt;}
.ycc{bottom:320.650667pt;}
.y4a{bottom:323.837333pt;}
.y23{bottom:326.630667pt;}
.y83{bottom:333.524000pt;}
.ya7{bottom:334.220000pt;}
.ycb{bottom:334.598667pt;}
.y113{bottom:334.853333pt;}
.yca{bottom:336.590667pt;}
.y22{bottom:342.570667pt;}
.y82{bottom:349.465333pt;}
.y112{bottom:350.793333pt;}
.ya6{bottom:350.856000pt;}
.yc9{bottom:352.532000pt;}
.y49{bottom:355.054667pt;}
.yde{bottom:360.773333pt;}
.y21{bottom:365.108000pt;}
.y81{bottom:365.677333pt;}
.y111{bottom:366.733333pt;}
.ya5{bottom:366.796000pt;}
.yc8{bottom:368.472000pt;}
.y48{bottom:370.994667pt;}
.ydd{bottom:376.713333pt;}
.y80{bottom:381.617333pt;}
.y110{bottom:382.673333pt;}
.ya4{bottom:382.736000pt;}
.yc7{bottom:384.412000pt;}
.y47{bottom:386.934667pt;}
.y20{bottom:397.157333pt;}
.y7f{bottom:397.557333pt;}
.y10f{bottom:398.613333pt;}
.ya3{bottom:398.676000pt;}
.yc6{bottom:400.352000pt;}
.y46{bottom:402.876000pt;}
.y1f{bottom:413.097333pt;}
.y7e{bottom:413.498667pt;}
.ya2{bottom:414.616000pt;}
.yc5{bottom:416.292000pt;}
.y45{bottom:418.960000pt;}
.y10e{bottom:423.056000pt;}
.y124{bottom:428.422667pt;}
.ya1{bottom:428.564000pt;}
.y1e{bottom:429.362667pt;}
.y7d{bottom:429.438667pt;}
.ya0{bottom:430.557333pt;}
.yc4{bottom:432.233333pt;}
.y44{bottom:434.901333pt;}
.y142{bottom:443.034667pt;}
.y1d{bottom:445.304000pt;}
.y7c{bottom:445.378667pt;}
.y9f{bottom:446.497333pt;}
.yc3{bottom:448.173333pt;}
.y43{bottom:450.841333pt;}
.y123{bottom:453.050667pt;}
.y141{bottom:457.646667pt;}
.y10d{bottom:459.717333pt;}
.y9e{bottom:460.445333pt;}
.y1c{bottom:461.244000pt;}
.y7b{bottom:461.318667pt;}
.y9d{bottom:462.437333pt;}
.yc2{bottom:464.113333pt;}
.y42{bottom:466.781333pt;}
.y122{bottom:468.990667pt;}
.y140{bottom:472.258667pt;}
.y10c{bottom:475.658667pt;}
.y1b{bottom:477.184000pt;}
.y7a{bottom:477.258667pt;}
.y9c{bottom:478.377333pt;}
.yc1{bottom:480.053333pt;}
.y41{bottom:482.721333pt;}
.y121{bottom:484.930667pt;}
.y13f{bottom:486.869333pt;}
.y10b{bottom:491.598667pt;}
.y1a{bottom:493.124000pt;}
.y79{bottom:493.198667pt;}
.y9b{bottom:494.317333pt;}
.yc0{bottom:495.993333pt;}
.y40{bottom:498.661333pt;}
.y13e{bottom:501.481333pt;}
.y10a{bottom:507.538667pt;}
.y19{bottom:509.064000pt;}
.y78{bottom:509.140000pt;}
.y9a{bottom:510.257333pt;}
.ybf{bottom:511.933333pt;}
.y3f{bottom:514.601333pt;}
.y13d{bottom:516.093333pt;}
.y109{bottom:523.478667pt;}
.y77{bottom:525.080000pt;}
.y18{bottom:525.330667pt;}
.ybe{bottom:527.874667pt;}
.y3e{bottom:530.542667pt;}
.y13c{bottom:537.626667pt;}
.y108{bottom:539.418667pt;}
.y76{bottom:541.020000pt;}
.y17{bottom:541.270667pt;}
.ybd{bottom:543.814667pt;}
.y99{bottom:546.124000pt;}
.y3d{bottom:546.482667pt;}
.y13b{bottom:552.238667pt;}
.y107{bottom:555.358667pt;}
.y75{bottom:556.960000pt;}
.y16{bottom:557.210667pt;}
.ybc{bottom:559.754667pt;}
.y98{bottom:562.065333pt;}
.y3c{bottom:562.566667pt;}
.y13a{bottom:566.850667pt;}
.y106{bottom:571.300000pt;}
.y74{bottom:572.900000pt;}
.y15{bottom:573.150667pt;}
.ybb{bottom:575.694667pt;}
.y97{bottom:578.005333pt;}
.y3b{bottom:578.508000pt;}
.y105{bottom:587.240000pt;}
.y139{bottom:588.384000pt;}
.y14{bottom:589.090667pt;}
.yba{bottom:591.634667pt;}
.y96{bottom:593.945333pt;}
.y3a{bottom:594.448000pt;}
.y73{bottom:595.336000pt;}
.y138{bottom:602.996000pt;}
.y104{bottom:603.180000pt;}
.y13{bottom:605.030667pt;}
.yb9{bottom:607.574667pt;}
.y95{bottom:609.885333pt;}
.y39{bottom:610.388000pt;}
.y72{bottom:613.932000pt;}
.y137{bottom:617.608000pt;}
.y103{bottom:619.120000pt;}
.y12{bottom:620.972000pt;}
.yb8{bottom:625.049333pt;}
.y38{bottom:626.328000pt;}
.yf6{bottom:628.849333pt;}
.y102{bottom:635.060000pt;}
.y136{bottom:636.205333pt;}
.y11{bottom:636.912000pt;}
.yb7{bottom:640.989333pt;}
.y37{bottom:642.268000pt;}
.yf5{bottom:644.790667pt;}
.y135{bottom:650.817333pt;}
.y101{bottom:651.000000pt;}
.y71{bottom:651.246667pt;}
.y10{bottom:652.852000pt;}
.yb6{bottom:656.929333pt;}
.y36{bottom:658.208000pt;}
.yf4{bottom:660.730667pt;}
.y134{bottom:665.428000pt;}
.y100{bottom:666.941333pt;}
.y70{bottom:667.186667pt;}
.yf{bottom:668.792000pt;}
.yb5{bottom:672.869333pt;}
.y35{bottom:674.149333pt;}
.yf3{bottom:676.670667pt;}
.y133{bottom:680.040000pt;}
.y6f{bottom:683.128000pt;}
.yff{bottom:684.209333pt;}
.ye{bottom:684.732000pt;}
.yb4{bottom:688.809333pt;}
.y34{bottom:690.089333pt;}
.yf2{bottom:692.610667pt;}
.y132{bottom:694.652000pt;}
.y6e{bottom:699.068000pt;}
.yfe{bottom:700.149333pt;}
.ydc{bottom:706.004000pt;}
.yd{bottom:706.029333pt;}
.yf1{bottom:708.550667pt;}
.y6d{bottom:715.008000pt;}
.yfd{bottom:716.089333pt;}
.y131{bottom:716.185333pt;}
.yb3{bottom:720.569333pt;}
.ydb{bottom:721.944000pt;}
.yf0{bottom:724.490667pt;}
.y130{bottom:730.797333pt;}
.y6c{bottom:730.948000pt;}
.yfc{bottom:732.030667pt;}
.yb2{bottom:736.509333pt;}
.yda{bottom:737.884000pt;}
.yef{bottom:740.432000pt;}
.yc{bottom:743.958667pt;}
.y12f{bottom:745.409333pt;}
.y6b{bottom:746.888000pt;}
.yfb{bottom:747.970667pt;}
.yb1{bottom:752.449333pt;}
.yee{bottom:756.372000pt;}
.y12e{bottom:760.021333pt;}
.yb{bottom:763.226667pt;}
.yfa{bottom:763.910667pt;}
.y6a{bottom:769.497333pt;}
.yed{bottom:772.312000pt;}
.y12d{bottom:774.633333pt;}
.y69{bottom:777.468000pt;}
.y8d{bottom:779.850667pt;}
.ya{bottom:782.493333pt;}
.yec{bottom:788.252000pt;}
.y8c{bottom:795.790667pt;}
.y12c{bottom:796.166667pt;}
.y9{bottom:801.761333pt;}
.yeb{bottom:804.192000pt;}
.y12b{bottom:810.778667pt;}
.y8b{bottom:811.730667pt;}
.y68{bottom:812.800000pt;}
.yea{bottom:820.132000pt;}
.y8{bottom:821.028000pt;}
.y12a{bottom:825.390667pt;}
.y8a{bottom:827.672000pt;}
.ye9{bottom:836.073333pt;}
.y7{bottom:840.296000pt;}
.y67{bottom:843.338667pt;}
.y89{bottom:843.612000pt;}
.y129{bottom:846.924000pt;}
.ye8{bottom:852.013333pt;}
.y66{bottom:859.280000pt;}
.y88{bottom:859.552000pt;}
.y6{bottom:859.564000pt;}
.y128{bottom:861.536000pt;}
.ye7{bottom:867.953333pt;}
.y5{bottom:873.045333pt;}
.y65{bottom:875.220000pt;}
.y87{bottom:875.492000pt;}
.y127{bottom:876.148000pt;}
.ye6{bottom:884.432000pt;}
.y126{bottom:890.758667pt;}
.y64{bottom:891.160000pt;}
.y86{bottom:891.432000pt;}
.y4{bottom:892.312000pt;}
.ye5{bottom:900.372000pt;}
.y63{bottom:907.100000pt;}
.y85{bottom:907.372000pt;}
.y3{bottom:911.580000pt;}
.y125{bottom:913.524000pt;}
.ye4{bottom:916.312000pt;}
.y62{bottom:923.313333pt;}
.ye3{bottom:932.252000pt;}
.y61{bottom:939.253333pt;}
.y2{bottom:943.457333pt;}
.ye2{bottom:948.193333pt;}
.y60{bottom:955.193333pt;}
.y1{bottom:967.368000pt;}
.y5f{bottom:971.133333pt;}
.y5b{bottom:1003.702667pt;}
.y5a{bottom:1019.642667pt;}
.ha{height:22.657118pt;}
.h12{height:23.910240pt;}
.h15{height:32.087757pt;}
.h9{height:34.753809pt;}
.he{height:35.865520pt;}
.h10{height:36.768636pt;}
.hd{height:37.725197pt;}
.h5{height:41.895049pt;}
.hc{height:42.730383pt;}
.h14{height:42.847437pt;}
.h6{height:43.548809pt;}
.h8{height:44.122658pt;}
.hb{height:47.180733pt;}
.h7{height:47.607945pt;}
.h2{height:52.947042pt;}
.h11{height:54.039142pt;}
.h13{height:54.044476pt;}
.h4{height:65.036382pt;}
.h3{height:65.041715pt;}
.hf{height:68.651302pt;}
.h1{height:1052.000000pt;}
.h0{height:1052.054667pt;}
.w0{width:790.369333pt;}
.w1{width:790.666667pt;}
.x0{left:0.000000pt;}
.x5a{left:67.142667pt;}
.x2b{left:73.113333pt;}
.xc{left:74.109333pt;}
.x4{left:78.897333pt;}
.xe{left:84.072000pt;}
.xd{left:87.393333pt;}
.x2c{left:93.785333pt;}
.xf{left:100.676000pt;}
.x76{left:101.921333pt;}
.x69{left:103.261333pt;}
.x10{left:104.573333pt;}
.x3{left:107.208000pt;}
.x5e{left:111.556000pt;}
.x34{left:114.114667pt;}
.x31{left:121.108000pt;}
.x6a{left:125.925333pt;}
.xa5{left:127.989333pt;}
.x73{left:130.846667pt;}
.x5{left:131.770667pt;}
.x2e{left:132.986667pt;}
.x74{left:135.481333pt;}
.x11{left:138.472000pt;}
.x32{left:141.149333pt;}
.x12{left:145.037333pt;}
.x35{left:147.645333pt;}
.x6b{left:150.389333pt;}
.x9{left:153.098667pt;}
.x71{left:154.150667pt;}
.x2f{left:156.857333pt;}
.xb5{left:162.320000pt;}
.x5f{left:163.548000pt;}
.x16{left:166.493333pt;}
.x7b{left:168.858667pt;}
.x36{left:169.788000pt;}
.x61{left:173.328000pt;}
.x13{left:175.244000pt;}
.x14{left:181.809333pt;}
.x60{left:188.002667pt;}
.x6f{left:194.681333pt;}
.x37{left:197.829333pt;}
.x8{left:201.286667pt;}
.x33{left:202.297333pt;}
.x38{left:206.088000pt;}
.x9c{left:207.812000pt;}
.x15{left:209.850667pt;}
.x78{left:214.429333pt;}
.x1{left:220.097333pt;}
.x79{left:225.124000pt;}
.x7{left:229.780000pt;}
.x6{left:232.473333pt;}
.x70{left:234.333333pt;}
.x2{left:235.945333pt;}
.x7c{left:238.224000pt;}
.x6c{left:240.001333pt;}
.xb{left:240.969333pt;}
.x75{left:242.302667pt;}
.x39{left:243.274667pt;}
.x7a{left:250.649333pt;}
.x9d{left:256.181333pt;}
.x97{left:257.348000pt;}
.x6d{left:264.452000pt;}
.x3a{left:265.360000pt;}
.x66{left:267.310667pt;}
.x9e{left:273.702667pt;}
.x18{left:278.049333pt;}
.xa{left:282.262667pt;}
.x19{left:287.333333pt;}
.x62{left:288.440000pt;}
.x67{left:291.600000pt;}
.x98{left:294.714667pt;}
.x64{left:296.672000pt;}
.x2d{left:298.916000pt;}
.x9f{left:309.348000pt;}
.x65{left:311.788000pt;}
.x6e{left:315.858667pt;}
.x72{left:316.825333pt;}
.x5c{left:317.848000pt;}
.x99{left:325.004000pt;}
.x63{left:326.062667pt;}
.x9a{left:328.636000pt;}
.x77{left:332.369333pt;}
.x17{left:334.994667pt;}
.x68{left:338.530667pt;}
.x7d{left:346.437333pt;}
.xb6{left:347.352000pt;}
.x3b{left:351.248000pt;}
.x5d{left:358.808000pt;}
.x30{left:360.088000pt;}
.x9b{left:382.413333pt;}
.x7e{left:383.804000pt;}
.x1e{left:403.821333pt;}
.x1a{left:404.817333pt;}
.x1d{left:418.101333pt;}
.x1b{left:420.093333pt;}
.x94{left:423.504000pt;}
.xb7{left:424.705333pt;}
.x1f{left:425.704000pt;}
.x4a{left:430.488000pt;}
.x1c{left:431.385333pt;}
.x85{left:435.856000pt;}
.xaf{left:438.054667pt;}
.x82{left:445.500000pt;}
.x4c{left:448.537333pt;}
.x41{left:457.585333pt;}
.xa3{left:461.364000pt;}
.x51{left:463.946667pt;}
.x8f{left:467.917333pt;}
.xb0{left:469.018667pt;}
.x3c{left:471.444000pt;}
.xb4{left:472.394667pt;}
.x4d{left:473.917333pt;}
.x86{left:475.642667pt;}
.x5b{left:480.465333pt;}
.x52{left:492.576000pt;}
.x83{left:496.338667pt;}
.xaa{left:499.408000pt;}
.x90{left:504.230667pt;}
.x26{left:505.161333pt;}
.x88{left:506.118667pt;}
.xb3{left:507.220000pt;}
.x3d{left:511.069333pt;}
.x53{left:514.180000pt;}
.xa4{left:515.141333pt;}
.x20{left:519.980000pt;}
.xa1{left:522.362667pt;}
.x91{left:531.388000pt;}
.x84{left:537.016000pt;}
.x54{left:538.120000pt;}
.xab{left:540.161333pt;}
.x21{left:541.909333pt;}
.x96{left:545.082667pt;}
.x89{left:546.433333pt;}
.x45{left:551.602667pt;}
.x27{left:554.849333pt;}
.x8c{left:557.581333pt;}
.x95{left:561.920000pt;}
.x57{left:562.924000pt;}
.x42{left:566.014667pt;}
.x4e{left:570.369333pt;}
.x22{left:575.537333pt;}
.x92{left:577.148000pt;}
.x44{left:579.180000pt;}
.x81{left:582.321333pt;}
.x55{left:585.197333pt;}
.x58{left:586.330667pt;}
.x46{left:587.394667pt;}
.xa2{left:591.636000pt;}
.x8d{left:593.894667pt;}
.xad{left:596.700000pt;}
.x23{left:599.060000pt;}
.x47{left:601.744000pt;}
.x8e{left:603.201333pt;}
.x4f{left:608.553333pt;}
.x43{left:612.985333pt;}
.x59{left:615.997333pt;}
.x40{left:618.206667pt;}
.x7f{left:622.060000pt;}
.x56{left:624.316000pt;}
.x87{left:626.012000pt;}
.xa6{left:630.108000pt;}
.x8a{left:631.674667pt;}
.xae{left:633.948000pt;}
.x24{left:639.330667pt;}
.xb2{left:647.333333pt;}
.x50{left:649.238667pt;}
.xa7{left:651.242667pt;}
.x48{left:656.668000pt;}
.xa0{left:659.221333pt;}
.x80{left:662.733333pt;}
.x25{left:667.192000pt;}
.x28{left:671.084000pt;}
.xb1{left:676.708000pt;}
.x4b{left:679.262667pt;}
.xac{left:680.316000pt;}
.xa8{left:682.461333pt;}
.x8b{left:685.708000pt;}
.x3e{left:688.189333pt;}
.xa9{left:690.805333pt;}
.x49{left:697.352000pt;}
.x29{left:699.444000pt;}
.x93{left:705.785333pt;}
.x3f{left:707.733333pt;}
.x2a{left:731.982667pt;}
}




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